how to get argument in python code example
Example 1: python arguments
import sys
print ("the script has the name %s" % (sys.argv[0])
Example 2: python get args
import sys
print(sys.argv)
import sys
print ("the script has the name %s" % (sys.argv[0])
import sys
print(sys.argv)