from sys import argv script, first, second, third = argv print(\"The script is called: \", script) print(\"The first variable is: \", first) print(\"The second vari
Run it from the shell like this:
python script.py arg1 arg2 arg3