Skip to content

Instantly share code, notes, and snippets.

@studiawan
Created September 22, 2014 00:28
Show Gist options
  • Save studiawan/0b0e7dca44361b4bd43c to your computer and use it in GitHub Desktop.
Save studiawan/0b0e7dca44361b4bd43c to your computer and use it in GitHub Desktop.
Write to file using "with" statement
# write to file using with, no need to close file explicitly
with open('submission.html', 'w') as f:
f.write(data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment