python 迭代器 生成器
迭代器 生成器
一 什么是迭代器协议
1.迭代器协议是指:对象必须提供一个next方法,执行该方法要么返回迭代中的下一项,要么就引起一个StopIteration异常,以终止迭代 (只能往后走不能往前退)
2.可迭代对象:实现了迭代器协议的对象(如何实现:对象内部定义一个__iter__()方法)
3.协议是一种约定,可迭代对象实现了迭代器协议,python的内部工具(如for循环,sum,min,max函数等)使用迭代器协议访问对象。
1
2
3
4
5
6
7
|
#序列类型 字符串,列表,元组都有下标,你用上述的方式访问 #非序列类型 字典,集合,文件 #for循环就是基于迭代器协议提供了一个统一的可以遍历所有对象的方法, #即在遍历之前,先调用对象的__iter__方法将其转换成一个迭代器, #然后使用迭代器协议去实现循环访问,这样所有的对象就都可以通过for循环来遍历了, #而且你看到的效果也确实如此,这就是无所不能的for循环,觉悟吧,年轻人 |
迭代器
1
2
3
|
#可迭代的:只要对象本身有__iter__方法,那它就是可迭代的 #执行对象下的__iter__方法,得到的结果就是迭代器 |
为什么要用迭代器:
1
2
3
4
5
6
7
|
#优点 # 1:迭代器提供了一种不依赖于索引的取值方式,这样就可以遍历那些没有索引的可迭代对象了(字典,集合,文件) # 2:迭代器与列表比较,迭代器是惰性计算的,更节省内存 #缺点: # 1:无法获取迭代器的长度,使用不如列表索引取值灵活 # 2:一次性的,只能往后取值,不能倒着取值 |
迭代器的用途
1
|
for 循环 |
二.生成器
一.函数
1.什么是生成器?
1
|
可以理解为一种数据类型,这种数据类型自动实现了迭代器协议(其他的数据类型需要调用自己内置的__iter__方法),所以生成器就是可迭代对象 |
2.生成器分类及在python中的表现形式:(Python有两种不同的方式提供生成器)
1
2
3
4
|
1. 生成器函数:常规函数定义,但是,使用 yield 语句而不是 return 语句返回结果。 yield 语句一次返回一个结果,在每个结果中间,挂起函数的状态, 以便下次重它离开的地方继续执行 2. 生成器表达式:类似于列表推导,但是,生成器返回按需产生结果的一个对象,而不是一次构建一个结果列表 |
3.为何使用生成器之生成器的优点
1
2
|
Python使用生成器对延迟操作提供了支持。所谓延迟操作,是指在需要的时候才产生结果,而不是立即产生结果。 这也是生成器的主要好处。 |
4.生成器小结:
1
2
3
|
1. 是可迭代对象 2. 实现了延迟计算,省内存啊 3. 生成器本质和其他的数据类型一样,都是实现了迭代器协议,只不过生成器附加了一个延迟计算省内存的好处,其余的可迭代对象可没有这点好处,记住喽!!! |
5.yield的功能:
1
2
3
|
1. 相当于把__iter__和__next__方法封装到函数内部 2. 与 return 比, return 只能返回一次,而 yield 能返回多次 3. 函数暂停已经继续运行的状态是通过 yield 保存的 |
1 #yield表达形式:
2 food=yield
3
4 #生成器.send与next(生成器)区别:
5 1.如果函数内yeild是表达式形式,那么必须先next(e)
6 2.二者的共同之处都可以让函数在上次暂时的位置继续运行不同之处在于send在出发下一次的执行时,会顺便给yield传一个值
7
8 yield表达式
tail 命令实现
1 #/usr/bin/env python
2 import time
3 #定义阶段:定义俩生成器函数
4 def tail(file_path):
5 with open(file_path,'r') as f:
6 f.seek(0,2)
7 while True:
8 line=f.readline() #最后一行
9
10 if not line:
11 time.sleep(0.3)
12 continue
13 else:
14 #print(line,end='')
15 yield line
16
17 def grep(pattern,lines):
18 for line in lines:
19 if pattern in line:
20 yield line
21
22 #调用阶段:得到俩生成器对象
23 g1=tail('/tmp/a.txt')
24 g2=grep('error',g1)
25
26 #next触发执行g2生成器函数
27 for i in g2:
28 print(i)
29
30 tail -f /tmp/a.txt | grep error
二.生成器表达式
#三元表达式
name='alex'
name='linhaifeng'
res='SB' if name == 'alex' else 'shuai'
print(res)
#列表解析
li = [i for i in range(10) ]
li = [i for i in range(10) if i > 5]
三.协程
1 def init():
2 def wrapper(*args,**kwargs):
3 obj = func(*args,**kwargs)
4 next(obj)
5 return obj
6 return wrapper
7
8
9 @init #food = init(food)
10 def food(name):
11 print("%s start to eat" % name)
12 food_list = []
13 while True:
14 food = yield food_list
15 food_list.append(food)
16 print("%s eat %s" % (name,food_list))
17
18
19 e = food("alex")
20 e.send("apple")
21 e.send("apple")
22 e.send("apple")
23
24 协程包子
1 #grep -rl 'python' C:\egon
2 import os,time
3 def init(func):
4 def wrapper(*args,**kwargs):
5 res=func(*args,**kwargs)
6 next(res)
7 return res
8 return wrapper
9
10 #找到一个绝对路径,往下一个阶段发一个
11 @init
12 def search(target):
13 '找到文件的绝对路径'
14 while True:
15 dir_name=yield #dir_name='C:\\egon'
16 print('车间search开始生产产品:文件的绝对路径')
17 time.sleep(2)
18 g = os.walk(dir_name)
19 for i in g:
20 # print(i)
21 for j in i[-1]:
22 file_path = '%s\\%s' % (i[0], j)
23 target.send(file_path)
24
25 @init
26 def opener(target):
27 '打开文件,获取文件句柄'
28 while True:
29 file_path=yield
30 print('车间opener开始生产产品:文件句柄')
31 time.sleep(2)
32 with open(file_path) as f:
33 target.send((file_path,f))
34
35 @init
36 def cat(target):
37 '读取文件内容'
38 while True:
39 file_path,f=yield
40 print('车间cat开始生产产品:文件的一行内容')
41 time.sleep(2)
42 for line in f:
43 target.send((file_path,line))
44
45 @init
46 def grep(pattern,target):
47 '过滤一行内容中有无python'
48 while True:
49 file_path,line=yield
50 print('车间grep开始生产产品:包含python这一行内容的文件路径')
51 time.sleep(0.2)
52 if pattern in line:
53 target.send(file_path)
54
55 @init
56 def printer():
57 '打印文件路径'
58 while True:
59 file_path=yield
60 print('车间printer开始生产产品:得到最终的产品')
61 time.sleep(2)
62 print(file_path)
63
64
65
66 g=search(opener(cat(grep('python',printer()))))
67 g.send('C:\\egon')
68 g.send('D:\\dir1')
69 g.send('E:\\dir2')
70
71 协程windows 查找文件
1 import os
2
3 def init(func):
4 def wrapper(*args,**kwargs):
5 obj = func(*args,**kwargs)
6 next(obj)
7 return obj
8 return wrapper
9
10 @init
11 def search(target):
12 while True:
13 dir_name = yield
14 obj = os.walk(dir_name)
15 for file in obj:
16 for path in file[-1]:
17 file_path = "%s/%s" % (file[0],path)
18 target.send(file_path)
19
20 @init
21 def opener(target):
22 while True:
23 file_path = yield
24 with open(file_path) as f:
25 target.send((file_path,f))
26 @init
27 def cat(target):
28 while True:
29 file_path,file = yield
30 for line in file:
31 target.send((file_path,line))
32 @init
33 def grep(pattern,target):
34 while True:
35 file_path,line = yield
36 if pattern in line:
37 target.send(file_path)
38 @init
39 def print_file():
40 while True:
41 file_path = yield
42 print(file_path)
43
44
45 g = search(opener(cat(grep("a",print_file()))))
46 g.send("/Users/centos/Desktop/example")
47
48 协程Linux查找文件
四.Example 两题
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
def cat(name): with open ( "a" , "r" ,encoding = "utf8" ) as name: for line in name: yield line def grep(target,lines): for line in lines: if target in line: yield line line_cat = cat( "a" ) grep_cat = grep( "apple" ,line_cat) for line in grep_cat: print (line.strip()) |
1
2
3
4
5
6
7
8
9
10
|
from urllib.request import urlopen def get(): while True : url = yield res = urlopen(url).read() print (res) g = get() next (g) g.send( 'http://www.python.org' ) |
http://www.cnblogs.com/linhaifeng/articles/6133014.html