def count():
fs = []
for i in range(1, 4):
def f():
return i*i
fs.append(f)
return fs
f1, f2 = count()
print f1(), f2()
运行出错为什么
乱舞的旋律
相关分类