1. 程式人生 > >python 獲取程序退出狀態碼

python 獲取程序退出狀態碼

python

import sys

try:

sys.exit(1)

except SystemExit,e:

print e

1

python 獲取程序退出狀態碼