当前位置:  开发笔记 > 编程语言 > 正文

有没有另一种方法在python生成器上调用next?

如何解决《有没有另一种方法在python生成器上调用next?》经验,为你挑选了1个好方法。

我有一个发电机,我想知道我是否可以使用它而不必担心StopIteration,我想在没有它的情况下使用它for item in generator.我想将它与while语句(或其他构造)一起使用.我怎么能这样做?



1> SilentGhost..:

内置功能

next(iterator [,default])
通过调用其__next__() 方法从迭代器中检索下一个项目.如果给定default,则在迭代器耗尽时返回,否则引发StopIteration.

在Python 2.5及更早版本中:

raiseStopIteration = object()
def next(iterator, default=raiseStopIteration):
    if not hasattr(iterator, 'next'):
       raise TypeError("not an iterator")
    try:
       return iterator.next()
    except StopIteration:
        if default is raiseStopIteration:
           raise
        else:
           return default


这是一个比公认的更好的解决方案.
推荐阅读
mobiledu2402851377
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有