在 Python 中列印異常
在 Python 中,您可以使用 try 和 except 區塊來處理異常。然而,列印錯誤訊息有時可能具有挑戰性。本文提供了在 Python 中列印異常的解決方案,無論您使用的是哪個版本。
Python 2.6 及更高版本、Python 3.x:
<code class="python">try: # ... except Exception as e: print(e)</code>
Python 2.5 及更早版本:
Python 2.5 及更早版本:<code class="python">try: # ... except Exception,e: print str(e)</code>
<code class="python">try: # ... except ValueError as e: print(e)</code>
以上是無論版本為何,如何在 Python 中列印異常?的詳細內容。更多資訊請關注PHP中文網其他相關文章!