Hey guys and gals, I'm just starting Python, and I was wondering if someone could translate this code into english ?
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
I got this code from the "Learn code the Hard Way" series, but I do not understand exactly what is going on...
Thanks in advance :D