I am reading Learn Python the Hard Way (3rd Ed.) and there is an exercise I was trying, but I am just unable to get it; the arguments and parameters stuff (Exercise 13).
I've read other answers on the site for the same question, but my doubts remain. Could someone explain this code to me?
from sys import argv
script, first, second, third = argv
print "The script is called:", script
print "Your first variable is:", first
print "Your third variable is:", third
print "Your second variable is:", second