这段python2的argv代码为什么在python3就报错,错误是not enough values to unpack,应该在修改呢? 30

Python2的argv代码fromsysimportargvscript,first,second,third=argvprint("Thescriptiscalled... Python2的argv代码
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)
展开
 我来答
hugr05
2018-04-08 · TA获得超过1.2万个赞
知道小有建树答主
回答量:35
采纳率:0%
帮助的人:5144
展开全部

执行的时候参数个数正确才行,我这里程序文件名为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高居首位。

大话残剑
2017-02-12 · TA获得超过2217个赞
知道大有可为答主
回答量:1137
采纳率:56%
帮助的人:712万
展开全部

执行的时候参数个数正确才行,我这里程序文件名为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)
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友b913784dc
2018-06-24
知道答主
回答量:7
采纳率:0%
帮助的人:2万
展开全部
此题出自《“笨办法”学python》吧,我看的是第三版,实际上在“应该看到的结果”栏目中,习题13会话第一行 $python ex13.py first 2nd 3rd这句就是在cmd里输入的,你可以清楚看到输入的参数。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式