如何在Python中打印异常?
2022-09-05 01:04:17
如何在块中打印错误/异常?except:
try:
...
except:
print(exception)
如何在块中打印错误/异常?except:
try:
...
except:
print(exception)
对于 Python 2.6 及更高版本以及 Python 3.x:
except Exception as e: print(e)
对于 Python 2.5 及更早版本,请使用:
except Exception,e: print str(e)