我尝试在json文件中保存我的数据(字典类型列表)但是引发了这个错误。
for i in range(0,len(data_sentences)):
data_dic = {}
data_dic["sentence"] = data_sentences[i]
data_dic["aspect"] = data_attributes[i]
data_dic["polarity"] = data_sentiments[i]
data.append(data_dic)
with open(jsonname+'.json', 'w') as outfile:
json.dump(data, outfile)
错误就像:
TypeError: Object of type 'time' is not JSON serializable
但奇怪的是,json文件是正确生成的。谷歌之后,我只找到了与数据时间无关的解决方案。
任何提示将不胜感激!