python或是曾经的js中可能写出一段这样似乎有点诡异的代码
funcs = []
for i in range(10):
funcs.append(lambda: print(i))
for func in funcs:
2019-03-06