1 导入模块


  1. import json

2 文件字符串转json数据


  • 用法:json.load(file)
    1. with open('json模块.json', encoding='utf-8') as file:
    2. content = json.load(file)
    3. print(content)

3 json数据转文件字符串


  • 用法:json.dump(file)
    1. with open('json模块2.json', 'w', encoding='utf-8') as file:
    2. json.dump(content, file)

4 json数据转字符串


  • 用法:json.dumps(file)
    1. string = json.dumps(content)
    2. print(string)

5 字符串转json数据


  • 用法:json.loads(file)
    1. content = json.loads(string)
    2. print(content)

参考文件


json模块.py