I typed this:
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
and it said this:
ValueError: need more than 1 value to unpack
[edit by admin: formatting]