「Python」readlines関数でファイルの複数行を読み込む

環境
PyCharm 2021.3.3
Python 3.9.2

書式
変数名 = open(ファイルパス名,’r’,encoding=’utf-8′)
変数名.readlines()
readlinesメソッドを利用して、複数行読み込みます。

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# coding: utf-8
str = "C:\\python\\test001.txt"
fileres = open(str,'r',encoding='utf-8')
#複数行読み込み
flst = fileres.readlines()
fileres.close()
#リストが表示される
print (flst)
# coding: utf-8 str = "C:\\python\\test001.txt" fileres = open(str,'r',encoding='utf-8') #複数行読み込み flst = fileres.readlines() fileres.close() #リストが表示される print (flst)
# coding: utf-8

str = "C:\\python\\test001.txt"

fileres = open(str,'r',encoding='utf-8')
#複数行読み込み
flst = fileres.readlines()

fileres.close()

#リストが表示される
print (flst)

実行結果

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
['AAA\n', '1222\n', '32sd\n', '444\n', 'DDDD']
['AAA\n', '1222\n', '32sd\n', '444\n', 'DDDD']
['AAA\n', '1222\n', '32sd\n', '444\n', 'DDDD']

 

Python

Posted by arkgame