首页 > 编程语言 > 详细

python基础:带有yield关键字函数调用后每一步详解

时间:2017-05-28 22:18:06      阅读:450      评论:0      收藏:0      [点我收藏+]
技术分享
 1 #-*- coding:utf-8 -*-
 2 __author__ = Administrator
 3 
 4 from collections import deque
 5 
 6 def search(lines, pattern, history=5):
 7     previons_line = deque(maxlen=history)
 8     for line in lines:
 9         if pattern in line:
10             yield line, previons_line
11         previons_line.append(line)
12 
13 
14 # Example use on a file
15 if __name__ == __main__:
16     with open(.\somefile.txt) as f:
17         for line, prevlines in search(f, python, 5):
18             for pline in prevlines:
19                 print(pline)
20             print(line, "end=‘‘")
21             print(-*20)
22           
23      
View Code

somefile.txt文件的内容:

技术分享

第一次调用search()函数运行到yield line,previons_line时就返回到主函数,即previons_line是空的,从而执行主函数后面的输出;第二次调用search()函数,直接从previons_line.append(line)开始运行,直到运行到yield line,previons_line时就返回到主函数。依次类推,所以somefile.txt中最后一行“python is end.”不会加入到previons_line中。

python基础:带有yield关键字函数调用后每一步详解

原文:http://www.cnblogs.com/yizhenfeng168/p/6916790.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!