Created
November 11, 2013 19:11
-
-
Save krebernisak/7418614 to your computer and use it in GitHub Desktop.
Python argument list manipulation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys | |
# Get the total number of args passed to the demo.py | |
total = len(sys.argv) | |
# Get the arguments list | |
cmdargs = str(sys.argv) | |
# Print it | |
print ("The total numbers of args passed to the script: %d " % total) | |
print ("Args list: %s " % cmdargs) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment