Guest User

Untitled

a guest
Mar 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2. import os, sys, re
  3.  
  4. def main():
  5.  
  6. with open(sys.argv[1]) as f:
  7. for line in f:
  8. line = line.strip()
  9.  
  10. print(line)
  11.  
  12. if __name__ == '__main__':
  13. main()
Add Comment
Please, Sign In to add comment