杭州七日天气预报数据分析

Posted xiongly

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了杭州七日天气预报数据分析相关的知识,希望对你有一定的参考价值。

技术图片

import requests as r
from bs4 import BeautifulSoup
import matplotlib.pyplot as p
def gethtmltext(url):
try:
a=r.get(url,timeout=30)
a.raise_for_status()
r.encoding=a.apparent_encoding
return a.text
except:
return ‘‘
url=‘http://www.weather.com.cn/weather/101210101.shtml‘
html=gethtmltext(url)
soup=BeautifulSoup(html,‘html.parser‘)
t_high=[]
t_low=[‘17‘]
for tr in soup.find_all(‘p‘,{‘class‘:‘tem‘}):
x=tr.get_text()
t_high.append(eval(x[1:3]))
t_low.append(x[5:7])
p.xlabel(‘时间(5月x日)‘,fontproperties=‘SimHei‘)
p.ylabel(‘温度(单位:℃)‘,fontproperties=‘SimHei‘)
p.title(‘杭州未来一周温度预测‘,fontproperties=‘SimHei‘)
x=range(10,17)
m=[24,28,28,29,25,30,29]
n=[17,17,17,18,19,21,20]
p.plot(x,m,marker=‘^‘)
p.plot(x,n,marker=‘^‘)
p.show()

以上是关于杭州七日天气预报数据分析的主要内容,如果未能解决你的问题,请参考以下文章

十月七日周六回杭州

requests爬取中国天气网深圳七日天气

微信小程序获取今日天气预报代码 小程序获取七日天气

Redis命令

Android 用MVVM框架模式+DataBinding+JSON来查询杭州天气信息(更新中)

百度飞桨学习——七日打卡作业选手数据分析