Agile育成ブログ
未来を変える喜びを
Python

オブジェクト

オブジェクトの作成

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

rfile = open("sample.txt",encoding="utf-8")     #ファイルを開いて変数rfileに入れる
text=rfile.read()
text=rfile.close()
print(text)