如何修复python字典输出格式

时间:2018-01-24 08:59:16

标签: python-2.7 dictionary

我这样data dict

data ={"tag": "hello", "patterns": "hello", "responses": "hi"} 

并将其存储在file中,但当我存储在文件json.dumps(data)中时,它会以该格式存储:

{'patterns': 'hello', 'tag': 'hello', 'responses': 'hi'}

如何以这种方式存储数据字典:

{"tag": "hello", "patterns": "hello", "responses": "hi"}

我的输入data ={"tag": "hello", "patterns": "hello", "responses": "hi"}

输出{'patterns': 'hello', 'tag': 'hello', 'responses': 'hi'}

必需的输出{"tag": "hello", "patterns": "hello", "responses": "hi"}

谢谢!!

0 个答案:

没有答案