当前位置: 首页 > 工具软件 > Typeset > 使用案例 >

TypeError: Object of type set is not JSON serializable 存储json报错解决

武彭薄
2023-12-01

报错内容: TypeError: Object of type set is not JSON serializable
报错原因:集合set类型的数据无法序列化

在使用json.dumps()或json.dump()时出现错误。

使用json.dump()进行json存储时:

with open("./j1.json", "w") as fp:
    json.dump(users_tweets, fp)
fp.close()

或json.dumps()将字典字符化时:

users_tweets_str = json.dump(users_tweets)

查看字典内容,发现字典中包含集合的字段,使用类型强制转换 list() 将字典中的集合转化为列表

 类似资料: