在一行中捕獲多個異常
在 Python 中,錯誤處理通常是使用 try 和 except 區塊來實現的。要處理單行中的多個異常,您可以使用以下語法:
try: # Code that might raise exceptions except (Exception1, Exception2) as e: # Handle exceptions Exception1 and Exception2
或者,對於Python 2.x,您可以使用以下(已棄用)語法:
try: # Code that might raise exceptions except (Exception1, Exception2), e: # Handle exceptions Exception1 and Exception2
這允許您在括號內指定多個異常,並用逗號分隔。當 try 區塊執行期間發生異常時,Python 將檢查引發的異常是否與 except 區塊中列出的任何異常相符。
例如,如果您想同時處理IDontLikeYouException 和YouAreBeingMeanException,您可以可以編寫以下程式碼:
try: # Do something that may fail except (IDontLikeYouException, YouAreBeingMeanException) as e: # Say please
在這種情況下,如果引發這些異常中的任何一個,則將執行except 區塊中的程式碼,變數e 將保存引發的異常物件。
以上是如何在一行Python程式碼中捕捉多個異常?的詳細內容。更多資訊請關注PHP中文網其他相關文章!