我需要返回文件的内容,这样做可以吗:
def foo(filePath):
with open(filePath) as f:
return json.load(f)
或者我应该这样做:
r = json.load(f)
return r
(当然我的功能还可以做其他事情,这是一个玩具模型)
潇潇雨雨
相关分类