python显示天气预报

复制代码 代码如下:

import urllib2
import json
import string
url ='http://m.weather.com.cn/data/101090502.html'
re = urllib2.urlopen(url).read()
we = json.loads(re)['weatherinfo']
print we['city'],we['date_y'].center(30),   we['week']
print we['temp1'],we['weather1'].center(30),  we['wind1']
print we['temp2'],we['weather2'].center(30),  we['wind2']
print we['temp3'],we['weather3'].center(30),  we['wind3']
print we['temp4'],we['weather4'].center(30),  we['wind4']
print we['temp5'],we['weather5'].center(30),  we['wind5']
print we['temp6'],we['weather6'].center(30),  we['wind6']
print we['index48_d']
raw_input('plese input Enter to esc')

相关文章

Python中的函数(二) 在上一篇文章中提到了Python中函数的定...
Python中的字符串 可能大多数人在学习C语言的时候,最先接触...
Python 面向对象编程(一) 虽然Python是解释性语言,但是它...
Python面向对象编程(二) 在前面一篇文章中谈到了类的基本定...
Python中的函数(一) 接触过C语言的朋友对函数这个词肯定非...
在windows下如何快速搭建web.py开发框架 用Python进行web开发...