how to add system arguements python in code code example
Example 1: python arguments
import sys
print ("the script has the name %s" % (sys.argv[0])
Example 2: how to get command line arguments in python
#!/usr/bin/python
import sys
print 'Number of arguments:', len(sys.argv), 'arguments.'
print 'Argument List:', str(sys.argv)