python3.x中的生成器generator调用next方法

今天写了一段Python程序,用到了Python的generator。当我用到generator的next方法时,shell总是提醒我符号错误。当时我是这么用的:

def fib(max):
	n,a,b=0,0,1
	while(n

g=fib(5)
g.next()

>>> f.next()
Traceback (most recent call last):
  File "", line 1, in 
    f.next()
AttributeError: 'generator' object has no attribute 'next'
上面的错误信息的大致意思是“generator”没有next属性。这是怎么回事儿呢? 于是,我登录Python官方网站上一看究竟。后来我才发现,前两天闲着没事儿,我把之前Python2.7更新到Python3.4,。而Python2.x与Python3.x在一些语法特性上有所不同。比如我上面的next方法调用错误。在Python3.x中若使用generator的next属性,应该这么调用:

g=fib(4)
next(g) #与之前的g.next()不同

好吧,既然已经更新到Python3.4了,那就好好看看Python3.x的新特性吧。

这是Python官方公布的Python3.x 的新特性的文档:https://docs.python.org/3.2/whatsnew/3.2.html

你可能感兴趣的:(python)