Skip to content

Instantly share code, notes, and snippets.

@asnimansari
Created September 2, 2019 09:14
Show Gist options
  • Save asnimansari/699d2fd1d6840230042708be6580df5a to your computer and use it in GitHub Desktop.
Save asnimansari/699d2fd1d6840230042708be6580df5a to your computer and use it in GitHub Desktop.
Simple file writing in python
file = open("hello.csv", "w")
try:
file.write('I am a disco dancer')
finally:
file.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment