码迷,mamicode.com
首页 > 编程语言 > 详细

python 生成器

时间:2017-05-10 00:20:27      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:斐波那契数   pytho   int   lis   生成器   数列   斐波那契数列   斐波那契   tor   

 

g = [x for x in range(3)]  # 列表生成式
gg = [x * x for x in range(1,100) if x % 2 == 0]
G = (x for x in range(3))  # 生成器
print type(g),type(G)
# 输出
<type ‘list‘> <type ‘generator‘>


# 斐波那契数列
def fib(max):
n, a, b = 0, 0, 1
while n < max:
     # print b
yield b
a, b = b, a + b # 循环一次后后一个数等于其后面2个数之和,即 a = b ,b = a + b
# print b
n = n + 1 # 循环次数,循环到指定次数跳出死循环
# print n
fib(6)

python 生成器

标签:斐波那契数   pytho   int   lis   生成器   数列   斐波那契数列   斐波那契   tor   

原文地址:http://www.cnblogs.com/vickey-wu/p/6833196.html

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