python2的时候
try: raise except Exception, e: print (e) return false
python3的时候
try: raise except Exception as e: print (e) return false
2024-04-12 15:02:02
python2的时候
try: raise except Exception, e: print (e) return false
python3的时候
try: raise except Exception as e: print (e) return false
下一篇:实验三