Introduction To Python - Learn Python the hard way v2.0
Title: Exercise 13
from sys import argv

script, first, second, third = argv

print "The script is called:", script
print "Your first variable is:", first
print "Your second variable is:", second
print "Your third variable is:", third


----------Output---------
The script is called: ex13.py
Your first variable is: hey
Your second variable is: hi
Your third variable is: hello