Hi Everyone,
I am running the below code on MacBook Visual studio, But I am getting error in the 3rd line of code, I have tried to find this error on multiple AI tools as well but not able to understand why this is occurring again and again. Can anyone please guide me what I am missing here?
```python
# YOUR CODE GOES HERE
from sys import argv
read the WYSS section for how to run this
script, first, second, third = argv
print(“The script is called:”, script)
print(“Your first variable is:”, first)
print(“Your second variable is:”, second)
print(“Your third variable is:”, third)
```
Terminal output
from sys import argv
read the WYSS section for how to run this
script, first, second, third = argv
Traceback (most recent call last):
File “”, line 1, in
ValueError: not enough values to unpack (expected 4, got 1)
print(“The script is called:”, script)
The script is called: [‘’]
print(“Your first variable is:”, first)
Traceback (most recent call last):
File “”, line 1, in
NameError: name ‘first’ is not defined. Did you mean: ‘list’?
print(“Your second variable is:”, second)
Traceback (most recent call last):
File “”, line 1, in
NameError: name ‘second’ is not defined
print(“Your third variable is:”, third)
Traceback (most recent call last):
File “”, line 1, in
NameError: name ‘third’ is not defined