如何让 Python 从已打开的文件对象 f 中解析 JSON 数据?
f
data = json.dumps(f)
data = json.load(f)
data = json.load('user_study.json')
data = dict(f.read())