使用PyScripter执行带有参数的python文件

时间:2014-06-27 17:47:55

标签: python pyscripter

我有一段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

我使用PyScripter IDE for Python 2.7,但不知道如何用它传递参数,有一个Python IDE底部的解释器窗口。

ide

1 个答案:

答案 0 :(得分:4)

自己找到解决方案。单击“运行菜单”将找到命令行参数。然后单击它以输入您想要的内容。

image