tech.chakapoko.com
Home
/
Python
/
ファイル操作
[Python]ファイルを1行ずつ読み込む
目次
ファイルを1行ずつ読み込んで標準出力へ書き出す
ファイルを1行ずつ読み込んで標準出力へ書き出す
with open('file.txt') as f: for line in f: line = line.rstrip() print(line)
Related contents
[Python]ファイルを1行ずつ読み込む
[Python]実行中のスクリプトのファイル名やパスを取得する
[Python]一時ファイルを利用する
お問い合わせ
プライバシーポリシー