Projects/Context_Managers.py
2025-09-12 20:37:36 -07:00

6 lines
130 B
Python

with open('notes.txt', 'w') as file:
file.write("This is a note.")
print("File has been written and closed automatically.")