- 积分
- 15968
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2016-10-17
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
import urllib2
import json
a=open('city.txt')
lines=a.readlines()
a.close()
cityname=raw_input('你想查那个城市的天气?\n')
kk=''
kk+=cityname
print kk
for line in lines:
try:
name=line.split(':')[0]
if name=='kk':
code=line.split(':')[1]
print code
break
except:
print 'error'
try:
url=('http://www.weather.com.cn/data/cityinfo/%s.html'%code)
content = urllib2.urlopen(url).read()
data = json.loads(content)
result = data['weatherinfo']
str_temp = ('%s\n%s ~ %s') % ( result['weather'],
result['temp1'],result['temp2'])
print str_temp
except:
print'失败'
|
|