python 迭代器单向,迭代器对象只能使用一次

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

参考链接为:https://stackoverflow.com/questions/17416777/why-can-i-only-use-a-reader-object-once

 

import csv

f=open('myfile.txt','r')
reader=csv.reader(f)
print [x for x in reader] #  This outputs the contents of "myfile.txt",
                          #  broken up by line.
print [x for x in reader] #  This line prints an empty list.

你有一个正在迭代的缓冲区,你通过基本上移动指针来消耗一个缓冲区,随时读取。如果你已经读过一次,那么指针就在缓冲区的末尾,没有什么可读的。

转载于:https://my.oschina.net/v512345/blog/2223074

你可能感兴趣的:(python 迭代器单向,迭代器对象只能使用一次)