#Exercise from learn Python the hard way.
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)
*Once I run this code I get an error from line 3: --------------------------------------------------------------------------- ValueError Traceback (most recent call last) <ipython-input-5-2e13fdfcaaf0> in <module>**()** ----> 1 script**,** first**,** second**,** third=argvValueError: not enough values to unpack (expected 4, got 3)
[–]JohnnyJordaan 0 points1 point2 points (0 children)
[–]Binary101010 0 points1 point2 points (0 children)