ValueError: need more than 1 value to unpack
- by user338690
I run this code:
from sys import argv
script, user_name =argv
prompt = '>'
print "Hi %s, I'm the %s script." % (user_name, script)
And I get the following error:
Traceback (most recent call last):
script, user_name =argv
ValueError: need more than 1 value to unpack