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