• 问题
  • 回答

    原文:http://stackoverflow.com/questions/231767/the-python-yield-keyword-explained

    注:这是一篇 stackoverflow 上一个火爆帖子的译文

    问题

    Python 关键字 yield 的作用是什么?用来干什么的?

    比如,我正在试图理解下面的代码:

    1. def node._get_child_candidates(self, distance, min_dist, max_dist):
    2. if self._leftchild and distance - max_dist < self._median:
    3. yield self._leftchild
    4. if self._rightchild and distance + max_dist >= self._median:
    5. yield self._rightchild

    下面的是调用:

    1. result, candidates = list(), [self]
    2. while candidates:
    3. node = candidates.pop()
    4. distance = node._get_dist(obj)
    5. if distance <= max_dist and distance >= min_dist:
    6. result.extend(node._values)
    7. candidates.extend(node._get_child_candidates(distance, min_dist, max_dist))
    8. return result

    当调用 _get_child_candidates 的时候发生了什么?返回了一个列表?返回了一个元素?被重复调用了么? 什么时候这个调用结束呢?

    回答

    为了理解什么是 yield ,你必须理解什么是生成器。在理解生成器之前,让我们先走近迭代。

    可迭代对象

    当你建立了一个列表,你可以逐项地读取这个列表,这叫做一个可迭代对象:

    1. >>> mylist = [1, 2, 3]
    2. >>> for i in mylist :
    3. ... print(i)
    4. 1
    5. 2
    6. 3

    mylist 是一个可迭代的对象。当你使用一个列表生成式来建立一个列表的时候,就建立了一个可迭代的对象:

    1. >>> mylist = [x*x for x in range(3)]
    2. >>> for i in mylist :
    3. ... print(i)
    4. 0
    5. 1
    6. 4

    所有你可以使用 for .. in .. 语法的叫做一个迭代器:列表,字符串,文件……你经常使用它们是因为你可以如你所愿的读取其中的元素,但是你把所有的值都存储到了内存中,如果你有大量数据的话这个方式并不是你想要的。

    生成器

    生成器是可以迭代的,但是你 只可以读取它一次 ,因为它并不把所有的值放在内存中,它是实时地生成数据:

    1. >>> mygenerator = (x*x for x in range(3))
    2. >>> for i in mygenerator :
    3. ... print(i)
    4. 0
    5. 1
    6. 4

    看起来除了把 [] 换成 () 外没什么不同。但是,你不可以再次使用 for i in mygenerator , 因为生成器只能被迭代一次:先计算出0,然后继续计算1,然后计算4,一个跟一个的…

    yield 关键字

    yield 是一个类似 return 的关键字,只是这个函数返回的是个生成器。

    1. >>> def createGenerator() :
    2. ... mylist = range(3)
    3. ... for i in mylist :
    4. ... yield i*i
    5. ...
    6. >>> mygenerator = createGenerator() # create a generator
    7. >>> print(mygenerator) # mygenerator is an object!
    8. <generator object createGenerator at 0xb7555c34>
    9. >>> for i in mygenerator:
    10. ... print(i)
    11. 0
    12. 1
    13. 4

    这个例子没什么用途,但是它让你知道,这个函数会返回一大批你只需要读一次的值.

    为了精通 yield ,你必须要理解:当你调用这个函数的时候,函数内部的代码并不立马执行 ,这个函数只是返回一个生成器对象,这有点蹊跷不是吗。

    那么,函数内的代码什么时候执行呢?当你使用for进行迭代的时候.

    现在到了关键点了!

    第一次迭代中你的函数会执行,从开始到达 yield 关键字,然后返回 yield 后的值作为第一次迭代的返回值. 然后,每次执行这个函数都会继续执行你在函数内部定义的那个循环的下一次,再返回那个值,直到没有可以返回的。

    如果生成器内部没有定义 yield 关键字,那么这个生成器被认为成空的。这种情况可能因为是循环进行没了,或者是没有满足 if/else 条件。

    回到你的代码

    生成器:

    1. # Here you create the method of the node object that will return the generator
    2. def node._get_child_candidates(self, distance, min_dist, max_dist):
    3. # Here is the code that will be called each time you use the generator object :
    4. # If there is still a child of the node object on its left
    5. # AND if distance is ok, return the next child
    6. if self._leftchild and distance - max_dist < self._median:
    7. yield self._leftchild
    8. # If there is still a child of the node object on its right
    9. # AND if distance is ok, return the next child
    10. if self._rightchild and distance + max_dist >= self._median:
    11. yield self._rightchild
    12. # If the function arrives here, the generator will be considered empty
    13. # there is no more than two values : the left and the right children

    调用者:

    1. # Create an empty list and a list with the current object reference
    2. result, candidates = list(), [self]
    3. # Loop on candidates (they contain only one element at the beginning)
    4. while candidates:
    5. # Get the last candidate and remove it from the list
    6. node = candidates.pop()
    7. # Get the distance between obj and the candidate
    8. distance = node._get_dist(obj)
    9. # If distance is ok, then you can fill the result
    10. if distance <= max_dist and distance >= min_dist:
    11. result.extend(node._values)
    12. # Add the children of the candidate in the candidates list
    13. # so the loop will keep running until it will have looked
    14. # at all the children of the children of the children, etc. of the candidate
    15. candidates.extend(node._get_child_candidates(distance, min_dist, max_dist))
    16. return result

    这个代码包含了几个小部分:

    • 我们对一个列表进行迭代,但是迭代中列表还在不断的扩展。它是一个迭代这些嵌套的数据的简洁方式,即使这样有点危险,因为可能导致无限迭代。 candidates.extend(node._get_child_candidates(distance, min_dist, max_dist)) 穷尽了生成器的所有值,但 while 不断地在产生新的生成器,它们会产生和上一次不一样的值,既然没有作用到同一个节点上.
    • extend() 是一个迭代器方法,作用于迭代器,并把参数追加到迭代器的后面。

    通常我们传给它一个列表参数:

    1. >>> a = [1, 2]
    2. >>> b = [3, 4]
    3. >>> a.extend(b)
    4. >>> print(a)
    5. [1, 2, 3, 4]

    但是在你的代码中的是一个生成器,这是不错的,因为:

    • 你不必读两次所有的值
    • 你可以有很多子对象,但不必叫他们都存储在内存里面。

    并且这很奏效,因为 Python 不关心一个方法的参数是不是个列表。Python 只希望它是个可以迭代的,所以这个参数可以是列表,元组,字符串,生成器… 这叫做 duck typing,这也是为何 Python 如此棒的原因之一,但这已经是另外一个问题了…

    你可以在这里停下,来看看生成器的一些高级用法:

    控制生成器的穷尽

    1. >>> class Bank(): # let's create a bank, building ATMs
    2. ... crisis = False
    3. ... def create_atm(self) :
    4. ... while not self.crisis :
    5. ... yield "$100"
    6. >>> hsbc = Bank() # when everything's ok the ATM gives you as much as you want
    7. >>> corner_street_atm = hsbc.create_atm()
    8. >>> print(corner_street_atm.next())
    9. $100
    10. >>> print(corner_street_atm.next())
    11. $100
    12. >>> print([corner_street_atm.next() for cash in range(5)])
    13. ['$100', '$100', '$100', '$100', '$100']
    14. >>> hsbc.crisis = True # crisis is coming, no more money!
    15. >>> print(corner_street_atm.next())
    16. <type 'exceptions.StopIteration'>
    17. >>> wall_street_atm = hsbc.create_atm() # it's even true for new ATMs
    18. >>> print(wall_street_atm.next())
    19. <type 'exceptions.StopIteration'>
    20. >>> hsbc.crisis = False # trouble is, even post-crisis the ATM remains empty
    21. >>> print(corner_street_atm.next())
    22. <type 'exceptions.StopIteration'>
    23. >>> brand_new_atm = hsbc.create_atm() # build a new one to get back in business
    24. >>> for cash in brand_new_atm :
    25. ... print cash
    26. $100
    27. $100
    28. $100
    29. $100
    30. $100
    31. $100
    32. $100
    33. $100
    34. $100
    35. ...

    对于控制一些资源的访问来说这很有用。

    Itertools,你最好的朋友

    itertools 包含了很多特殊的迭代方法。是不是曾想过复制一个迭代器?串联两个迭代器?把嵌套的列表分组?不用创造一个新的列表的 zip/map?

    只要 import itertools

    需要个例子?让我们看看比赛中4匹马可能到达终点的先后顺序的可能情况:

    1. >>> horses = [1, 2, 3, 4]
    2. >>> races = itertools.permutations(horses)
    3. >>> print(races)
    4. <itertools.permutations object at 0xb754f1dc>
    5. >>> print(list(itertools.permutations(horses)))
    6. [(1, 2, 3, 4),
    7. (1, 2, 4, 3),
    8. (1, 3, 2, 4),
    9. (1, 3, 4, 2),
    10. (1, 4, 2, 3),
    11. (1, 4, 3, 2),
    12. (2, 1, 3, 4),
    13. (2, 1, 4, 3),
    14. (2, 3, 1, 4),
    15. (2, 3, 4, 1),
    16. (2, 4, 1, 3),
    17. (2, 4, 3, 1),
    18. (3, 1, 2, 4),
    19. (3, 1, 4, 2),
    20. (3, 2, 1, 4),
    21. (3, 2, 4, 1),
    22. (3, 4, 1, 2),
    23. (3, 4, 2, 1),
    24. (4, 1, 2, 3),
    25. (4, 1, 3, 2),
    26. (4, 2, 1, 3),
    27. (4, 2, 3, 1),
    28. (4, 3, 1, 2),
    29. (4, 3, 2, 1)]

    了解迭代器的内部机理

    迭代是一个实现可迭代对象(实现的是 __iter__() 方法)和迭代器(实现的是 __next__() 方法)的过程。可迭代对象是你可以从其获取到一个迭代器的任一对象。迭代器是那些允许你迭代可迭代对象的对象。