1.首先引入json模块
# 引入json模块 import json
2.转换
#JSON到字典转化: dictinfo = json.loads(json_str) # 输出dict类型
字典到JSON转化: jsoninfo = json.dumps(dict) # 输出str类型