with構文でテキスト開く。
デスクトップ上のテキストを開くためにパスを取得する。
jupyter labならフォルダ構造のなかで右クリック、Copy Pathで取得する。(’Desktop/test.txt’)
デスクトップ上ならshift+右クリックでパスのコピーで取得する。ただし先頭にrをつけること。(r”C:\Users\~Desktop\test.txt”)
with open(‘Desktop/test.txt’,’r’,encoding=”utf-8″) as f:
text = f.read()
print(text)
で読み込めました!
open、closeよりこちらが手間なく簡単かも。
(こちらもencding=がないと’cp932’のエラーが出ます。)