Python學習--12 異常處理、調試

異常捕獲 語法格式:python try: pass except xxx as e: pass except xxx as e: pass ... else: pass finally: pass except用來捕獲異常類型,常見的有ValueError、ZeroDivisionError,都繼承基類BaseException。若是沒有錯誤發生,則執行
相關文章
相關標籤/搜索