Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. def rngRead():
  2. opFile = open('random.txt', 'r')
  3.  
  4. while opFile != "":
  5. rline = opFile.readline()
  6. print(rline)
  7.  
  8. opFile.close()
  9. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement