python3--json反序列化

# Auther: Aaron Fan

# 加载文件中的数据

import json

with open('test.txt','r',encoding='utf-8') as f:
info = json.loads(f.read())

print(info)
原文地址:https://www.cnblogs.com/AaronFan/p/6175708.html