为什么要使用迭代器?
为了节省内存。
如果使用列表(file_obj.readlines())需要事先装载所有数据到内存。
file_obj支持两种方式的按行读取迭代器。如下:
方法一:
>>> f = open('test.txt')
>>> for l in f:
... print l
方法二:
>>> f = open('test.txt')
>>> for l in f.xreadlines():
... print l
为什么要使用迭代器?
为了节省内存。
如果使用列表(file_obj.readlines())需要事先装载所有数据到内存。
file_obj支持两种方式的按行读取迭代器。如下:
方法一:
>>> f = open('test.txt')
>>> for l in f:
... print l
方法二:
>>> f = open('test.txt')
>>> for l in f.xreadlines():
... print l
呵呵,谢谢
VaTG790i.最好的<a href=http://www.kyfei.com>网站推广软件</a>,
非常好
....................
;ui;普i;uighur;ui;ui;个
在unix网络编程中看到了关于TCP/IP的一些内容,我感觉还是写的不够。正在下载中,一定
下载地址呢