Advertisement
Guest User

Untitled

a guest
Feb 17th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. with open(fname) as f:
  2. content = f.readlines()
  3. # you may also want to remove whitespace characters like `n` at the end of each line
  4. content = [x.strip() for x in content]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement