Guest User

Untitled

a guest
Jun 20th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #!/usr/bin/env python
  2. import sys
  3.  
  4. if __name__ == "__main__":
  5. print "Hello, ",
  6. if len(sys.argv) >= 2:
  7. print "%s!" % sys.argv[1:]
  8. else:
  9. print "world!"
Add Comment
Please, Sign In to add comment