使用python查询天气
时间: 2023-01-11 13:55:36 浏览: 102
python小程序基于Jupyter实现天气查询的方法
使用 Python 查询天气的方法有很多种, 下面是一个简单的例子:
首先, 安装 requests 库:
```
pip install requests
```
然后, 使用 requests 库发送 HTTP 请求, 获取天气信息:
```python
import requests
def get_weather(city):
result = requests.get(f'https://www.weather.com.cn/data/sk/{city}.html')
result.encoding = 'utf-8'
weather_info = result.json()
print(weather_info)
get_weather('101010100') # 北京
```
上面的代码将会输出北京的天气信息, 包括温度, 湿度, 风力等.
注意: 使用这种方法获取天气信息需要联网, 并且请求次数可能有限制, 请注意避免频繁请求.
阅读全文