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
本文标题:exception python2 和python3区别
本文链接:https://www.haomeiwen.com/subject/kwnkdctx.html
网友评论