python2的时候
try: raise except Exception, e: print (e) return false
python3的时候
try: raise except Exception as e: print (e) return false
python3 try except与python2的区别
原文:https://www.cnblogs.com/gentlemanhai/p/11854193.html