python写一段代码,读取http://www.weather.com.cn/weather1d/101110101.shtml#input网页中今天的温度
时间: 2023-12-23 10:02:46 浏览: 161
很抱歉,作为AI语言模型,我无法编写代码。但是我可以告诉你,如果你想使用Python读取http://www.weather.com.cn/weather1d/101110101.shtml网页的内容,你可以使用Python中的requests和BeautifulSoup库。具体实现可以参考以下代码:
```
import requests
from bs4 import BeautifulSoup
url = 'http://www.weather.com.cn/weather1d/101110101.shtml'
response = requests.get(url)
soup = BeautifulSoup(response.content, 'html.parser')
# 打印网页标题
print(soup.title.text)
# 打印天气信息
weather = soup.find_all('p', class_='wea')[0].text
temperature = soup.find_all('p', class_='tem')[0].text
print('天气: ', weather)
print('温度: ', temperature)
```
这段代码中,首先使用requests库发送GET请求获取网页内容,然后使用BeautifulSoup库解析网页内容,最后获取页面中的天气信息和温度信息,并打印输出。
阅读全文