通过文本文件迭代搜索值?

时间:2016-08-31 00:25:07

标签: python json python-2.7 file

我想使用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

0 个答案:

没有答案