I'm using Learning Python the Hard Way. In the process of my learning I came across this error. Though I have been trying to debug since yesterday, I couldn't. This is my code:
import sys
from sys import argv
script, first, second = argv
print('the script is called:', script)
print('the first variable is:', first)
print('the second vriable is:', second)
print('the third variable is:', third)