【Python】保存Json文件时 乱码问题与读取后乱码问题统一解决方法 2021-11-10 14:29:10 浏览数 (1) 网上大部分只讲了ensure_ascii=False,如果保存文件需要设置utf-8为文件保存编码;代码语言:javascript复制#中文编码 jsondata = json.dumps(jsontext, ensure_ascii=False) #生成文件utf-8 f = open('filename.json', 'w' ,encoding='utf-8') ascii 编码 0 人点赞 上一篇:分享雷军22年前编写的代码