I run this code:
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
But when I run it, I get this error:
ValueError: need more than 1 value to unpack