exception python2 和python3区别
2019-08-02 本文已影响0人
戈羽殇雪
python2:
try:
raise
except Exception, e:
pass
python3
try:
raise
except Exception as e:
pass
python2:
try:
raise
except Exception, e:
pass
python3
try:
raise
except Exception as e:
pass