我有一段python代码。
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
我使用 Python 2.7 的 PyScripter IDE,但不确定如何传递参数,IDE 底部有一个 Python Interpreter 窗口。