python遍历函数_python 如何生成一个可以被遍历的函数

python生成一个可以被遍历的函数,听起来很绕口,到底什么意思,就是可以把一个函数当成列表一样可以进行遍历,下面的代码中,函数每次运行生成的值都不一样,如果不设置终止次数,则会永远的遍历下去,看了这段代码,真实感到了python的强大

def fibonacci(start=(0, 1), stop=10):

"""Generate an iterator on the first 'stop' Fibonacci numbers, starting with

the optional pair of numbers given as an argument.

"""

a, b = start

while stop:

yield a # the magic happens here.

# yield acts like return, but control resumes there

# on the next iteration

a, b = b, a + b

stop -= 1

for num in fibonacci():

print num

开心洋葱 , 版权所有丨如未注明 , 均为原创丨未经授权请勿修改 , 转载请注明python 如何生成一个可以被遍历的函数!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值