这段python2的argv代码为什么在python3就报错,错误是not enough values to unpack,应该在修改呢? 30
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) 展开
执行的时候参数个数正确才行,我这里程序文件名为test.py。
G:\>test.py 1 2 3 4 5Traceback (most recent call last): File "G:\test.py", line 4, in <module> script, first, second, third = argvValueError: too many values to unpack (expected 4)G:\>test.py 1 2 3The script is called: G:\test.pyYour first variable is: 1Your second variable is: 2Your third variable is: 3G:\>test.pyTraceback (most recent call last): File "G:\test.py", line 4, in <module> script, first, second, third = argvValueError: not enough values to unpack (expected 4, got 1)Python(英国发音:/ˈpaɪθən/ 美国发音:/ˈpaɪθɑːn/), 是一种面向对象的解释型计算机程序设计语言,由荷兰人Guido van Rossum于1989年发明,第一个公开发行版发行于1991年。
Python是纯粹的自由软件, 源代码和解释器CPython遵循 GPL(GNU General Public License)协议。Python语法简洁清晰,特色之一是强制用空白符(white space)作为语句缩进。
Python具有丰富和强大的库。它常被昵称为胶水语言,能够把用其他语言制作的各种模块(尤其是C/C++)很轻松地联结在一起。常见的一种应用情形是,使用Python快速生成程序的原型(有时甚至是程序的最终界面),然后对其中有特别要求的部分,用更合适的语言改写,比如3D游戏中的图形渲染模块,性能要求特别高,就可以用C/C++重写,而后封装为Python可以调用的扩展类库。需要注意的是在您使用扩展类库时可能需要考虑平台问题,某些可能不提供跨平台的实现。
7月20日,IEEE发布2017年编程语言排行榜:Python高居首位。
执行的时候参数个数正确才行,我这里程序文件名为test.py。
G:\>test.py 1 2 3 4 5
Traceback (most recent call last):
File "G:\test.py", line 4, in <module>
script, first, second, third = argv
ValueError: too many values to unpack (expected 4)
G:\>test.py 1 2 3
The script is called: G:\test.py
Your first variable is: 1
Your second variable is: 2
Your third variable is: 3
G:\>test.py
Traceback (most recent call last):
File "G:\test.py", line 4, in <module>
script, first, second, third = argv
ValueError: not enough values to unpack (expected 4, got 1)