您好,今天蔡哥来为大家解答以上的问题。too many values to unpack post,too many values to unpack相信很多小伙伴还不知道,现在让我们一起来看看吧!
1、很多童鞋在参考“笨方法学习python"一书时遇到下面滴错误提示:too many values to unpack编写的代码如下,保存为文件名“***.py"from sys import argv#print argvscript, first, second, third = argvprint "the script is called:",scriptprint "your first variable is:",firstprint "your second variable is:",secondprint "your third variable is:",third在命令行中运行:python ***.py提示出错。
2、原因是argv需要调用需要带参数运行,采用如下运行方式即可正确输出:python ***.py 1 2 3其中的2、3为运行参数,可以是任意字符,或者汉字,比如:$ python ***.py 1 2 我the script is called: ***.pyyour first variable is: 1your second variable is: 2your third variable is: 我工具/原料MAC OSX terminalpython 2.7.11方法/步骤1编织***.py后直接字命令行调用。
本文就为大家分享到这里,希望小伙伴们会喜欢。