Guest User

Untitled

a guest
Apr 25th, 2018
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. data = open("thefile.txt","r")
  2.  
  3. with open('filename' ,'r') as f:
  4. for line in f:
  5. print line
  6.  
  7. with open('filename', 'r') as textfile:
  8. textfile.read()
Add Comment
Please, Sign In to add comment