Skip to content

Instantly share code, notes, and snippets.

@Ventsislav-Yordanov
Created February 18, 2019 05:25
Show Gist options
  • Save Ventsislav-Yordanov/0a2edb6aeb68d782950309e429222642 to your computer and use it in GitHub Desktop.
Save Ventsislav-Yordanov/0a2edb6aeb68d782950309e429222642 to your computer and use it in GitHub Desktop.
try:
file = open("filename.txt")
file.write("Python is awesome!")
except:
print("An error occured when writing to the file")
finally:
file.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment