Skip to content

Instantly share code, notes, and snippets.

@duhaime
Created July 4, 2018 20:58
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 duhaime/4f5f8671e0a752172e4d00f369342361 to your computer and use it in GitHub Desktop.
Save duhaime/4f5f8671e0a752172e4d00f369342361 to your computer and use it in GitHub Desktop.
Split on lines
with open('myfile.txt', 'r') as f:
lines = f.read().split('\n') # change to \r on windows
line_20 = lines[20]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment