无法打开在Txt文件中格式化的json

时间:2018-11-07 21:30:49

标签: python json

我正在尝试打开并加载json格式的信息,但它一直在告诉错误。我不知道为什么。我需要帮助!!! 这是代码:

fname = "this is file path"
tweets_data=[]
with open(fname,'r') as infile:
    f = json.loads(infile)
    for item in f:
        tweets_data.append(item)
print (tweets_data)
  

TypeError:JSON对象必须为str,字节或字节数组,而不是“ TextIOWrapper”

0 个答案:

没有答案