テキストファイルの読む処理|Pythonのお勉強
2021/12/31 2022/2/14
Pythonの勉強をしてます。今回はファイルの内容を読み込んで、文字列を付与してShell出力します。
ファイルの用意
サンプルコード
file = open(file_path, "r")
print(type(file))
for line in file:
print("This is " + line)
file.close()
サンプルコード結果
>>
*** Remote Interpreter Reinitialized ***
<class '_io.TextIOWrapper'>
hello apple
hello orange
hello banana