#异常
#while True:
try:
    a=int(input("input a number,plz: "))
    r=8/a
    print(r)

except ZeroDivisionError:
        print("0不能作为除数,重新输入吧\n")
except Exception as otherqingkuang:
        print(f"未知错误 {otherqingkuang}")
  • 直接在主程序中加入
# 异常的传递性
# 利用 ↑ 直接在主程序中加入 异常判断,减少在每个函数中都写的繁琐

def demo1():
   return int(input("input \n "))
   

def demo2():
   return demo1()


try:
   print(demo2())

except Exception as a:
   print(f"未知错误 {a}")

#**********************************