1 导入模块
import json
2 文件字符串转json数据
- 用法:json.load(file)
with open('json模块.json', encoding='utf-8') as file:
content = json.load(file)
print(content)
3 json数据转文件字符串
- 用法:json.dump(file)
with open('json模块2.json', 'w', encoding='utf-8') as file:
json.dump(content, file)
4 json数据转字符串
- 用法:json.dumps(file)
string = json.dumps(content)
print(string)
5 字符串转json数据
- 用法:json.loads(file)
content = json.loads(string)
print(content)