经常不带脑子不写参数,导致写入的json都是acsi乱码的形式,吃几次亏后决心记住这两个参数!
with open(‘filename‘, ‘w‘, encoding=‘utf-8‘) as json_file: json.dump("你的内容", json_file, ensure_ascii=False)
如果你要写入的是个列表 并且希望它分行,那么就:
q=list(c)#再次确保list格式 print(‘开始写入!‘) with open(‘count.json‘, ‘w‘) as w: json.dump(q,w, ensure_ascii=False,indent=2)#q就是列表形式
其实重点只是dump中的参数
ensure_ascii=False
而已,有了它就行