最佳答案
好吧,耐心听我说,我知道这看起来很复杂,但请你告诉我发生了什么。
from functools import partial
class Cage(object):
def __init__(self, animal):
self.animal = animal
def gotimes(do_the_petting):
do_the_petting()
def get_petters():
for animal in ['cow', 'dog', 'cat']:
cage = Cage(animal)
def pet_function():
print "Mary pets the " + cage.animal + "."
yield (animal, partial(gotimes, pet_function))
funs = list(get_petters())
for name, f in funs:
print name + ":",
f()
给予:
cow: Mary pets the cat.
dog: Mary pets the cat.
cat: Mary pets the cat.
所以基本上,为什么我没有得到三种不同的动物?cage
不是“打包”到嵌套函数的本地作用域中吗?如果没有,对嵌套函数的调用如何查找本地变量?
我知道遇到这类问题通常意味着一个人“做错了”,但我想知道会发生什么。