我已经解析了一些看起来像这样的JSON:
{"bag": "saco", "balloon": "bal\u00e3o", "apple": "ma\u00e7\u00e3"}
它有u
个,且重音没有正确显示。
我用
为我的Python文件添加了前缀#!/usr/bin/env python
# -*- coding: utf-8 -*-
我有一个字典,我将其转储到JSON文件中:
new_dict = {}
// doing stuff with the dictionary
with open('myFile.json', 'w+') as fp:
json.dump(new_dict, fp)
抱歉,我是Python的新手。如何让我的脚本在没有u的情况下编写JSON文件,以便正确显示字符?