from sys import argv
script, first, second = argv
print("The script is called:", script)
print("The first variable is:", first)
print("The second variable is:", second)
from sys import argv
script, first, second = argv
print("The script is called:", script)
print("The first variable is:", first)
print("The second variable is:", second)