【发布时间】:2014-06-27 17:47:55
【问题描述】:
我有一段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,但不知道如何传递参数,有一个 Python IDE 底部的解释器窗口。
【问题讨论】:
标签: python pyscripter