Python,将字典列表转为json
我有一个字典列表:
for item in list:
listDicts.append(item.AsDict())
如何使用 simplejson 将 listDicts 转换为 json 字符串? 使列表中的每个字典都成为 JSON 中的一个对象。
I have a list of dicts:
for item in list:
listDicts.append(item.AsDict())
How convert listDicts to json string, using simplejson ?
Making the list each dictionary will be an object in JSON.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尝试过 json.dumps(listDicts) 吗?它开箱即用。我不确定 simplejson 会给你买什么;事实上,我认为它们是同一件事。
Have you tried
json.dumps(listDicts)
? It comes out of the box. I'm not sure what simplejson would buy you; in fact, I think they're the same thing.