[Python]ファイル読み込み[for文]

Pythonでfor文を用いてファイル書き込みを行うためのサンプルコード一覧

読み込むテキストファイル

Hello World

Python

Test

sample.txt

基本

input = 'sample.txt'
f = open(input, 'r', encoding='UTF-8')
for data in f:
  print(data)
f.close()

改行除外

input = 'sample.txt'
f = open(input, 'r', encoding='UTF-8')
for data in f:
  print (data.rstrip('\n'))
f.close()

with文

input = 'sample.txt'
with open(input, 'r', encoding='UTF-8') as f:
    for data in f:
        print (data.rstrip('\n'))
タイトルとURLをコピーしました