- 论坛徽章:
- 26
|
不会报错吧。 - #!/usr/bin/python2
- def ppp():
- nol = []
- for x in range(1, 4):
- def f(): return x * x
- nol.append(f)
- return nol
- a, b, c = ppp()
- print a, b, c
- # <function f at 0x7f9790d5a6e0> <function f at 0x7f9790d5a758> <function f at 0x7f9790d5a7d0>
- print a(), b(), c()
- # 9 9 9
- def qqq():
- nol = []
- for x in range(1, 4):
- def f(x=x): return x * x
- nol.append(f)
- return nol
- x, y, z = qqq()
- print x, y, z
- # <function f at 0x7f3197ab88c0> <function f at 0x7f3197ab8938> <function f at 0x7f3197ab89b0>
- print x(), y(), z()
- # 1 4 9
复制代码 |
|