python sys.exit() 错误
我在IDLE上运行
import sys;
sys.exit()
报错:
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
sys.exit()
SystemExit
但是在Cmd里运行没问题。望高手解答。
环境:Python2.6.5 winxp sp2
[解决办法]
可以这样玩
D:\>pythonPython 2.4.4 Stackless 3.1b3 060516 (#71, Jan 27 2007, 21:48:58) [MSC v.1310 32Type "help", "copyright", "credits" or "license" for more information.>>> import sys>>> sys.exit()D:\>