我想使用python检索json文件的对象我有一个json文件c:/python/news.json
现在我想检索json文件的对象。我的代码如下
import json
with open("c:/python/news.json") as json_file:
data=json.load(json_file)
print data
它总是给出错误
invalid syntax
但它不工作。我想输出为:
print data['news1']
那么它应该总是给出第一条消息,因为我的 json 类似于:
[
{
"news1": "BBC",
"ur": "Lennon"
},
{
"news2": "newstime",
"ur": "Lennon"
},
]
提前致谢。