私は "Python The Hard Way 3rd edition"という本でPythonを練習しています。私はこの本が始めるには良い資源であると捜した。ここに何が問題なのですか? Python2 - > Python3
from sys import argv
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)
そして、value error: not enough values to unpack (expected 4, got 1)
というエラーが表示されました。
これについてもっと例を挙げることはできますか? –
@OliverBird確かに: '$ python myscript.py one two three' – Mureinik
ありがとう。私は結果を得ました! –