[Python]ファイル読み込み[read関数]

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

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

Hello World

Python

Test

sample.txt

基本

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

with文

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