Introduction To Python - Learn Python the hard way v2.0
Title: Exercise13
from sys import argv
script, first, second, third = argv
print "Script name: ", script
print "1st arg: ", first
print "2nd arg: ", second
print "3rd arg: ", third
