《 python3-cookbook 》第一章第三节:保留最后 N 个元素
from collections import deque
def search(lines, pattern, history=5):
previous_lines = deque(maxlen=history)
for line in lines:
if pattern in line:
yield line, precious_lines
previous_lines.append(line)
# Example use on a file
if __name__ == '__main__':
with open(r'../../somefile.txt') as f:
for line, preclines in search(f, 'python', 5):
for pline in prevlines:
print(pline, end='')
print(line, end='')
print('-' * 20)
代码运行没报错,但是为什么没有 print 出东西?
我调试了一下,好像是search
函数里yield
后面的变量没有返回给line
和preclines
迭代,搞不懂为什么,是我理解错了吗?
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.