标签: python python-2.7
我的代码看起来像这样,我不清楚退出(0)和退出(其他数字)。 我有时候会给自己,但我自己也不清楚
from sys import exit class Scene(object): def enter(self): print "This scene is not yet configured" exit(1)
答案 0 :(得分:0)
exit(0)表示没有错误的干净退出
exit(1)表示出现错误,这就是退出的原因