#Python异常处理
try: #捕获异常
pass
except: #所有处理异常
print("当try执行过程中发生异常,执行except进行处理,不会暂停程序,反之except不会执行")
#多层异常处理
try: #捕获异常
pass
except ValueError: #处理异常
print("当try执行过程中发生异常,执行except进行处理,不会暂停程序,反之except不会执行")
except ZeroDivisionError: #处理异常
print("当try执行过程中发生异常,执行except进行处理,不会暂停程序,反之except不会执行")
except: #其他错误处理
print("当try执行过程中发生异常,执行except进行处理,不会暂停程序,反之except不会执行")
#多层异常处理
try: #捕获异常
pass
except (ZeroDivisionError,ValueError) as info: #多异常处理
print("错误原因",info)
raise #错误处理不了 再次抛出异常
except: #其他错误处理
print("当try执行过程中发生异常,执行except进行处理,不会暂停程序,反之except不会执行")
#人为抛出异常指定错误
raise ValueError("错误原因")