# try 代码块会产生 ArithmeticError 异常,因为数字不能除以 0:
try:
print(10 / 0)
except ArithmeticError:
print("计算过程中出现错误")
except:
print("其他未知错误发生")