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 are writing a program which is aksing for 4 inputs and you are giving onle one. That's why you are receiving an error. You can use the below command: