heyihui 发表于 2017-12-9 22:32:17

Python"零基础"031讲《天气查询》

小甲鱼老师在这一节里讲的《天气查询》的例子,自己照着做时报错。
import urllib.request
import json
import pickle

pickle_file = open('city_data.pkl','rb')
city = pickle.load(pickle_file)

password=input('请输入城市:')
name1=city
File1 =urllib.request.urlopen('http://m.weather.com.cn/data/'+name1+'.html')#打开url
weatherHTML= File1.read().decode('utf-8')#读入打开的url
weatherJSON = json.JSONDecoder().decode(weatherHTML)#创建json
weatherInfo = weatherJSON['weatherinfo']
#打印信息
print ( '城市:', weatherInfo['city'])
print ('时间:', weatherInfo['date_y'])
print ( '24小时天气:')
print ('温度:', weatherInfo['temp1'])
print ('天气:', weatherInfo['weather1'])
print ('风速:', weatherInfo['wind1'])
print ('紫外线:', weatherInfo['index_uv'])
print ('穿衣指数:', weatherInfo['index_d'])
print ('48小时天气:')
print ('温度:', weatherInfo['temp2'])
print ('天气:', weatherInfo['weather2'])
print ('风速:', weatherInfo['wind2'])
print ('紫外线:', weatherInfo['index48_uv'])
print ('穿衣指数:', weatherInfo['index48_d'])
print ('72小时天气:')
print ('温度:', weatherInfo['temp3'])
print ('天气:', weatherInfo['weather3'])
print ('风速:', weatherInfo['wind3'])
input ('按任意键退出:')



yjsx86 发表于 2017-12-10 04:00:11

1.请确认当前目录下有 city_data.pkl 这个文件
2.确认这个文件不是空文件

月牙丫里 发表于 2018-3-23 15:22:13

RE: Python"零基础"031讲《天气查询》

本帖最后由 月牙丫里 于 2018-3-23 15:26 编辑

请问这是哪里出问题了?

XYY1010 发表于 2018-4-2 21:26:56

看看

lijiye171 发表于 2018-7-15 22:58:00

月牙丫里 发表于 2018-3-23 15:22
请问这是哪里出问题了?

同求啊

a18127248449 发表于 2018-8-6 18:08:05

月牙丫里 发表于 2018-3-23 15:22
请问这是哪里出问题了?

应该是网站过期了

hz-wjp 发表于 2019-11-26 23:09:45

可以看看

是linnea吖 发表于 2022-3-30 19:32:13

月牙丫里 发表于 2018-3-23 15:22
请问这是哪里出问题了?

请问解决了吗
页: [1]
查看完整版本: Python"零基础"031讲《天气查询》