Attualmente sto passando per Learn Python The Hard Way. Penso che questo esempio potrebbe essere antiquato, quindi volevo avere un feedback qui.Utilizzo degli argomenti della riga di comando in Python: Understanding sys.argv
sto usando Python 3,1
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))
sto ottenendo questo errore:
Traceback (most recent call last):
File "/path/ch13.py", line 3, in <module>
script, first, second, third, bacon = argv
ValueError: need more than 1 value to unpack
Qualche idea di cosa c'è che non va?
Sono un noob, qual è il modo corretto di farlo con il codice che ho scritto? –
'foo.py bar baz quux' –
Ha detto che devi eseguire la riga di comando in questo esercizio. Apri CMD (Finestra) e digita: ex13.py script_value first_value second_value third_value –