码迷,mamicode.com
首页 > 其他好文 > 详细

[错误处理]AttributeError: 'generator' object has no attribute 'next'

时间:2018-06-04 11:26:36      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:error   attribute   def   错误   处理   识别   3.x   attr   generator   

在python3下学习yield用法。

程序如下:

def bar(n):
    m = n 
    while True:
        m += 1
        yield m 
b = bar(3)
print(b.next())

程序报错

'generator' object has no attribute 'next'

错误原因

python 3.x中 generator(有yield关键字的函数则会被识别为generator函数)中的next变为__next__了,next是python 3.x以前版本中的方法。

[错误处理]AttributeError: 'generator' object has no attribute 'next'

标签:error   attribute   def   错误   处理   识别   3.x   attr   generator   

原文地址:https://www.cnblogs.com/everfight/p/python_next.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!