30/09/2018, 18:14
Hỏi về lỗi: ValueError: need more than 1 value to unpack trong Python
Mình xin hỏi trong bài 13 của anh Đạt hướng dẫn, với code như sau:
from sys import argv
script, first, second, third, forth = argv
print "The script is called:", script
print "Your first varialbe is:", first
print "Your second varialbe is:", second
print "Your third varialbe is:", third
print "Your forth varialbe is:" , forth
Ban đầu mình chạy bình thường. Sau đó gõ xong code của bài 14 và chạy thì bài 14 cũng xuất hiện lỗi ValueError: need more than 1 value to unpack GIỐNG HỆT bài 13 như sau:
PS C:UsersAdministrator humucmoi> python ex13.py
Traceback (most recent call last):
File "ex13.py", line 3, in <module>
script, first, second, third, forth = argv
ValueError: need more than 1 value to unpack
mà k hiểu là lỗi gì? Cả nhà giải đáp giúp nhé, Thanks!
Bài liên quan
À quên, khi chạy mình phải truyền vào cho nó các tham số… ngốc quá…hihi^^