Skip to content

Instantly share code, notes, and snippets.

@ashwch
Last active August 29, 2015 14:19
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 ashwch/8090cff47f69ff0a3ad4 to your computer and use it in GitHub Desktop.
Save ashwch/8090cff47f69ff0a3ad4 to your computer and use it in GitHub Desktop.
with open('foo.txt', 'w') as f:
f.write('aa\n\rbbb\n\rcccc\n\rddddd')
with open('foo.txt') as f:
print f.readlines()
# ['aa\n', '\rbbb\n', '\rcccc\n', '\rddddd']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment