python3學習之異常
##異常處理 #try: # pass #except Exception as ex: Exception(捕獲所有錯誤)可以換成任何異常類型,代表只捕獲指定錯誤, # 可以寫多個except # pass ##異常類型: # # ##完整的異常代碼: # try: # raise Exception('testeetst') #主動觸發異常 ,Exception可以是其他異常類型 # except ValueError as ex: # print(ex) # except Exception as ex: # pass # else: # pass # finally: # pass ##自定義異常 #繼承Exception類 # ##斷言 #assert 1==1 相當於if else 然後拋出異常 while True: n1 = input("num1: ") n2 = input("num2: ") try: n1 = int(n1) n2 = int(n2) print(n1 + n2) except Exception as e: print(e)