# Auther: Aaron Fan

# 加载文件中的数据

import json

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

print(info)

相关文章:

  • 2021-05-21
  • 2021-08-30
  • 2021-10-05
  • 2021-12-26
  • 2021-10-29
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-06-04
  • 2021-07-25
  • 2021-12-10
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案