我需要返回文件的内容,这样做可以吗:def foo(filePath): with open(filePath) as f: return json.load(f)或者我应该这样做:def foo(filePath): with open(filePath) as f: r = json.load(f) return r(当然我的功能还可以做其他事情,这是一个玩具模型)
添加回答
举报
0/150
提交
取消