没有调用read()方法啊 怎么自己就执行了呢
import json class Students(object): def read(self): return '["Tim", "Bob", "Alice"]' s = Students() print json.load(s) ----------------------------- 问题: 没有调用read()方法啊 怎么自己就执行了呢???我没搞懂
import json class Students(object): def read(self): return '["Tim", "Bob", "Alice"]' s = Students() print json.load(s) ----------------------------- 问题: 没有调用read()方法啊 怎么自己就执行了呢???我没搞懂
2019-03-05
举报