python 读写json数据

2022-05-22  本文已影响0人  孙广宁
6.2 读写json数据
>>> import json
>>> d ={"name":"test","price":"30.33"}
>>> json_str=json.dumps(d)
>>> json_str
'{"name": "test", "price": "30.33"}'
>>>
>>> data = json.loads(json_str)
>>> data
{'name': 'test', 'price': '30.33'}
>>>
>>> with open("data.json",'w') as f:
...     json.dump(data,f)
...
>>> with open("data.json",'r') as f:
...     d1 = json.load(f)
...     print(d1)
...
{'name': 'test', 'price': '30.33'}
>>>

二、json编码

格式 备注
None
bool
int
str
上一篇下一篇

猜你喜欢

热点阅读