最佳答案
我正在从一个网址获取天气信息。
weather = urllib2.urlopen('url')
wjson = weather.read()
我得到的答案是:
{
"data": {
"current_condition": [{
"cloudcover": "0",
"humidity": "54",
"observation_time": "08:49 AM",
"precipMM": "0.0",
"pressure": "1025",
"temp_C": "10",
"temp_F": "50",
"visibility": "10",
"weatherCode": "113",
"weatherDesc": [{
"value": "Sunny"
}],
"weatherIconUrl": [{
"value": "http:\/\/www.worldweatheronline.com\/images\/wsymbols01_png_64\/wsymbol_0001_sunny.png"
}],
"winddir16Point": "E",
"winddirDegree": "100",
"windspeedKmph": "22",
"windspeedMiles": "14"
}]
}
}
我如何访问任何我想要的元素?
如果我这样做: print wjson['data']['current_condition']['temp_C']
我得到错误说:
字符串索引必须是整数,而不是 str。