我想使用Python在下面的文本文件中获取temperature属性。它应该返回值69.08(在这种情况下)。
可以从this pastebin下载非常长的文本文件weather_data.json
。
这是我当前的代码,但它返回的方式不仅仅是69.08:
with open("weather_data.json") as openfile:
for line in openfile:
for part in line.split():
if "temperature" in part:
print part