用PYTHON获取7天最高温度
import requestsfrom bs4 import BeautifulSoupimport reurl ='http://www.weather.com.cn/weather/101190101.shtml'r = requests.get(url)r.encoding ='utf8'soup =BeautifulSoup(r.text,'html.parser')body = soup.bodylist_temp = body.find('ul', {'class':'t cl







