readlines()
方法用于读取所有行(直到结束符 EOF)并返回列表,该列表可以由 Python 的 for... in ... 结构进行处理。
如果碰到结束符 EOF 则返回空字符串。
readlines() 方法语法如下:
fileObject.readlines( );
for
line
in
fo
.
readlines
(
)
:
line
=
line
.
strip
(
)
print
"
读取的数据为: %s
"
%
(
line
)
fo
.
close
(
)
以上实例输出结果为:
文件名为: runoob.txt
读取的数据为: 1:www.runoob.com
读取的数据为: 2:www.runoob.com
读取的数据为: 3:www.runoob.com
读取的数据为: 4:www.runoob.com
读取的数据为: 5:www.runoob.com
Python File(文件) 方法