tech.chakapoko.com
Home / Python / ファイル操作

[Python]ファイルを1行ずつ読み込む

ファイルを1行ずつ読み込んで標準出力へ書き出す

with open('file.txt') as f:
    for line in f:
        line = line.rstrip()
        print(line)