Python错误:AttributeError: 'generator' object has no attribute 'next'解决办法
Posted jfdwd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python错误:AttributeError: 'generator' object has no attribute 'next'解决办法相关的知识,希望对你有一定的参考价值。
今天在学习生成器对象(generation object)运行以下代码时,遇到了一个错误:
#定义生成器函数
def liebiao():
for x in range(10):
yield x
#函数调用
g = liebiao()
#打印元素
print(g.next())
D:\>python test.py
Traceback (most recent call last):
File "test.py", line 10, in <module>
print(g.next())
AttributeError: ‘generator‘ object has no attribute ‘next‘
Google后发现,在python3.x版本中,python2.x的g.next()函数已经更名为g.__next__(),所以只需要将g.next()换成g.__next__()就可以了。如果你觉得g.__next__()太丑,使用next(g)也能达到相同效果。
这其实是版本更新所带来的无法避免的错误,毕竟python不像其他的编程语言,python2和python3之间互不兼容。
---------------------
作者:向东的笔记本
来源:CSDN
原文:https://blog.csdn.net/gaifuxi9518/article/details/81059938
版权声明:本文为博主原创文章,转载请附上博文链接!
以上是关于Python错误:AttributeError: 'generator' object has no attribute 'next'解决办法的主要内容,如果未能解决你的问题,请参考以下文章
Python 多处理库错误(AttributeError:__exit__)
如何修复python2.7中的“AttributeError:'module'对象没有属性'storage'”错误
Python多处理错误:AttributeError:模块'__main__'没有属性'__spec__'
AttributeError:“WebElement”对象没有属性“单击”错误尝试使用 Selenium Python 单击链接
python脚本AttributeError: module 'xxxx' has no attribute 'xxxxx'错误解决办法
python提示错误“AttributeError: 'module' object has no attribute 'Tk'”是啥原因?