我这样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"}
谢谢!!