Skip to content

Instantly share code, notes, and snippets.

@krebernisak
Created November 11, 2013 19:11
Show Gist options
  • Save krebernisak/7418614 to your computer and use it in GitHub Desktop.
Save krebernisak/7418614 to your computer and use it in GitHub Desktop.
Python argument list manipulation
#!/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