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)
これらの引数を渡す方法は?