iter 函数另类用法

它可以很简单地构造一个无限迭代器:

for i in iter(int, 1):
    print(i)

#将无限打印出0

原来,如果iter有第二个参数,那么第一个参数必须是一个参数可以省略的可调用对象.int函数符合这种要求.

迭代什么时候停止呢?当int()==1的时候就停止.显然这是不可能的,所以就无限迭代了.

 

官方文档定义:

iter(object[, sentinel])

Return an iterator object. The first argument is interpreted very differently depending on the presence of the second argument. Without a second argument, object must be a collection object which supports the iteration protocol (the __iter__() method), or it must support the sequence protocol (the __getitem__() method with integer arguments starting at 0). If it does not support either of those protocols, TypeError is raised. If the second argument, sentinel, is given, then object must be a callable object. The iterator created in this case will call object with no arguments for each call to its __next__() method; if the value returned is equal to sentinel, StopIteration will be raised, otherwise the value will be returned.

posted @ 2014-03-19 22:38  LisPythoniC  阅读(413)  评论(0编辑  收藏  举报