您正在编写 Python表示形式 ,而不是JSON。
使用
json.dump()函数直接将漂亮打印的JSON写入文件:
with open('data.txt', 'wt') as out: res = json.dump(obj, out, sort_keys=True, indent=4, separators=(',', ': '))
欢迎分享,转载请注明来源:内存溢出
您正在编写 Python表示形式 ,而不是JSON。
使用
json.dump()函数直接将漂亮打印的JSON写入文件:
with open('data.txt', 'wt') as out: res = json.dump(obj, out, sort_keys=True, indent=4, separators=(',', ': '))
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)