Created
October 22, 2020 11:31
-
-
Save KatagiriSo/3c75d2f1c80a24edf0000d09fd8c5dda to your computer and use it in GitHub Desktop.
ファイル読むこむ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
path = "./hogehoge.txt" | |
with open(path, mode='w') as f: | |
f.write("a") | |
with open(path) as f: | |
t = f.read() | |
print(t) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment