Python檔案readlines()方法

2019-10-16 23:05:30

Python檔案的readlines()方法使用readline()讀取並返回一個包含行的列表直到EOF。 如果可選的sizehint引數存在,則不讀取到EOF,它讀取總共大約為sizehint大小的字串(可能在舍入到內部緩衝區大小之後)的整行。

僅在遇到EOF時才返回空字串。

語法

以下是readlines()方法的語法 -

fileObject.readlines( sizehint );

引數

  • sizehint ? 這是要從檔案讀取的位元組數。

返回值

  • 此方法返回包含行的列表。

範例

假設’foo.txt‘檔案中包含以下行 -

This is 1st line
This is 2nd line
This is 3rd line
This is 4th line
This is 5th line

以下範例顯示了readlines()方法的用法。

#!/usr/bin/python3

# Open a file
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))

# Close opened file
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: