我没有得到这个程序的期望输出?
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)
Run Code Online (Sandbox Code Playgroud)
如何使用cmd传递这些参数?
python-3.x ×1