prices = [168, 730, "240", 547]
total = sum(prices)
print(total)
#此處出現異常,程式終止
try:
total = sum(prices)
print(total)
except TypeError: #此處可註明異常型別或不註明,但如果註明錯誤的異常型別,程式依然會報錯
print("Check type")
#程式不會終止
使用try/except可以避免程式終止
異常型別包括:
try/except的異常處理流程: