而不是:
$ 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
>>>
答案 0 :(得分:15)
你可以试试这个:
$ python -ic ""
>>>
答案 1 :(得分:3)
我有一个启动文件,所以这对我有用:
python -i "$PYTHONSTARTUP"
虽然Python 3现在有一个-q
标志:
python3 -q