how to give arguments to python script code example
Example 1: python arguments
import sys
print ("the script has the name %s" % (sys.argv[0])
Example 2: how to pass parameters in python script
#!/usr/bin/python
import sys
print 'Number of arguments:', len(sys.argv), 'arguments.'
print 'Argument List:', str(sys.argv)
# python scriptName.py arg1 arg2 arg3
# Output:
# Number of arguments: 4 arguments.
# Argument List: ['test.py', 'arg1', 'arg2', 'arg3']