Skip to content

Instantly share code, notes, and snippets.

@anna-anisienia
Created September 29, 2020 22:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anna-anisienia/459198cacd08db10e8cab08135940086 to your computer and use it in GitHub Desktop.
Save anna-anisienia/459198cacd08db10e8cab08135940086 to your computer and use it in GitHub Desktop.
myfile = open('data.txt', 'w')
try:
myfile.write('Hello from context manager!')
finally:
myfile.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment