Command Line Arguments : Command Line « Development « Python
- Python
- Development
- Command Line
Command Line Arguments

#For instance the following output results from running "python demo.py one two
#three" at the command line:
import sys
print sys.argv
Related examples in the same category