我正在尝试打开并加载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”