如何传递命令行参数IronPython

时间:2012-10-16 03:34:27

标签: python console ironpython argv sharpdevelop

  

可能重复:
  How can I pass command-line arguments in IronPython?

我是ironpython和sharpdevelop的新手,我正在尝试运行以下代码,

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

如何将参数传递给命令行?

2 个答案:

答案 0 :(得分:3)

SharpDevelop

  • 右键单击python 项目
  • 上的
  • 在上下文菜单中选择属性
  • 选择调试 -tab
  • 将您的参数附加到命令行参数字段

答案 1 :(得分:1)

this article对你有帮助吗?

  

您需要设置sys.argv的值。

engine.Sys.argv = List.Make(args);