#2
Artless2018-08-27 20:56
|
def ct():
fs=[]
for i in range(1,4):
def f():
j=i*i
return j
fs.append(f)
return fs
ct()[0]()
为什么最后结果是9不是1呢?