File Handlingwith open("notes.txt", "w") as f: f.write("Hello") with open("notes.txt") as f: print(f.read())