如何用python处理json文件

2025-04-24 05:01:49
推荐回答(1个)
回答1:

import json
f =open("config.json", "r")
jsonObj = json.loads(f.read())