Program [ex13.py]:
import sys
a = raw_input("Input 3rd variable:")
print "The script is called:", sys.argv[0]
print "Your first variable is:", sys.argv[1]
print "Your second variable is:", sys.argv[2]
print "Your third variable is:", a
Executing in command prompt: ex13.py 1 3
How to run this from the python shell by giving the argv ?