6
我沒有得到期望的這個程序的輸出?如何在Python 3.x中傳遞命令行參數?
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)
如何使用cmd傳遞這些參數?