赞
踩
读取json文件:
#读取json文件 import json with open("test.json",mode="r",encoding="utf-8") as f: #以读取的方式打开json文件 json_f=json.load(f) #读取的json文件格式为字符串格式