私はZed Shawのlearn python the hard wayに従っており、練習問題14に従っています.これが私が話しているプログラムです:
from sys import argv
script, user_name = argv
prompt = '> '
print "Hi %s, I'm the %s script." % (user_name, script)
print "I'd like to ask you a few questions."
print "Do you like me %s?" % user_name
likes = raw_input(prompt)
print "Where do you live %s?" % user_name
lives = raw_input(prompt)
print "What kind of computer do you have?"
computer = raw_input(prompt)
print """
Alright, so you said %r about liking me.
You live in %r. Not sure where that is.
And you have a %r computer. Nice.
""" % (likes, lives, computer)
今、私はコマンドを使用してpowershell端末でこのプログラムを実行します
python e:\python\ex14.py
次のエラーメッセージが表示されます。
Traceback (most recent call last):
File "e:\python\ex14.py", line 3, in (module)
script, user_name=argv
ValueError: need more than 1 value to unpack.
さて、何が問題なのかわかりません。唯一の理由は、ファイル名だけを入力するのではなく、ファイル パスを入力している可能性があります。