Python 3 – 文件readlines()方法
描述
方法 readlines() 使用readline()方法读取到EOF,并返回一个包含每一行的列表。如果可选的 sizehint 参数存在,则不是读取到EOF,而是读取约有sizehint个字节的整行(可能是在取整后的内部缓冲区大小之后)。
只有在立即遇到EOF时才会返回空字符串。
语法
以下是 readlines() 方法的语法:
fileObject.readlines(sizehint);
参数
sizehint - 这是从文件中读取的字节数。
返回值
这个方法返回一个包含每一行的列表。
示例
以下示例演示了 readlines() 方法的用法:
假设'foo.txt'文件包含以下文本:
This is 1st line
This is 2nd line
This is 3rd line
This is 4th line
This is 5th line
#!/usr/bin/python3
# 打开一个文件
fo = open("foo.txt", "r+")
print ("Name of the file: ", fo.name)
line = fo.readlines()
print ("Read Line: %s" % (line))
line = fo.readlines(2)
print ("Read Line: %s" % (line))
# 关闭打开的文件
fo.close()
结果
运行以上程序后,将得到以下结果:
Name of the file: foo.txt
Read Line: ['This is 1st line\n', 'This is 2nd line\n', 'This is 3rd line\n', 'This is 4th line\n', 'This is 5th line\n']
Read Line: