请帮忙。
我正在做这个练习,但我正在用木星做练习。这是为python 2编写的
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 virable is:", third)
如何在Python 3中正确编写它。非常感谢!
答案 0 :(得分:0)
同样的例子也适用于Python 3。
```
>> python unpack.py 4 5 3
The script is called: unpack.py
Your first variable is 4
Your second variable is: 5
Your third virable is: 3
```
您可以通过以下方式指定参数:
python arg1 arg2 ...
答案 1 :(得分:0)
同样适用于Python3
,您也不需要更改任何内容。但作为一种安全的做法,请检查参数长度。你不想让你的脚本崩溃。祝你好运。