Advertisement
niravkdesai

coma-seprator

Nov 11th, 2013
503
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3.  
  4.  
  5. def main():
  6. passFile = open('temp')
  7. for line in passFile.readlines():
  8. user = line.strip().split(";")[0]
  9. print user
  10.  
  11. if __name__ == '__main__':
  12. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement