2022
09-29
09-29
Python try-except-else-finally的具体使用
目录try-excepttry-except-elsetry-finallytry-except作用:处理异常情况用法:try:后面写正常运行的代码,except+异常情况:后面写对异常情况的处理示例:try:num=int(input("Pleaseinputanumber:\n"))print(42/num)exceptZeroDivisionError:#except后为错误类型print("Dividedbyzero!")exceptValueError:#可以有多个错误类型print("Wrongvalue!")运行结果:注意:调用try语句时,try后的所有错...
继续阅读 >