Python解释器欢迎消息可以被抑制吗?

时间:2013-08-03 22:28:41

标签: python

而不是:

$ python
Python 2.7.2 (default, Oct 11 2012, 20:14:37)
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>

我想,例如:

$ python --quiet
>>>

2 个答案:

答案 0 :(得分:15)

你可以试试这个:

$ python -ic ""
>>> 

答案 1 :(得分:3)

我有一个启动文件,所以这对我有用:

python -i "$PYTHONSTARTUP"

虽然Python 3现在有一个-q标志:

python3 -q