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
You could run it like this: python script.py first, second, third