我想做点什么:
% python foo bar
import sys
sys.argv
得到:
% ['foo', 'bar']
但是当你输入一个不是脚本的参数或者进入非交互模式时,python会死掉。
我能以某种方式这样做吗?
答案 0 :(得分:14)
使用-
作为脚本名称:
python - foo bar
测试:
>>> import sys
>>> sys.argv
['-', 'foo', 'bar']
答案 1 :(得分:7)
$ python - asdf asdf
Python 2.7.6 (default, Feb 15 2014, 23:06:13)
[GCC 4.8.2 20140206 (prerelease)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.argv
['-', 'asdf', 'asdf']
>>>
答案 2 :(得分:1)
以这种方式运行python:
python - foo bar
然后
import sys
sys.argv
将起作用:)
答案 3 :(得分:0)
您可以手动设置它以便在IDLE中进行测试:
try:
__file__
except:
sys.argv = [sys.argv[0], 'foo', 'bar']