Python try-except-else-finally的具体使用

时间:2024-04-30 20:57:38 来源:网络 浏览:48次
目录try-excepttry-except-elsetry-finally

try-except

作用:处理异常情况

用法:try:后面写正常运行的代码,except + 异常情况:后面写对异常情况的处理

示例:

try: num = int(input("Please input a number:n")) print(42 / num)except ZeroDivisionError: #except后为错误类型 print("Divided by zero!")except ValueError: #可以有多个错误类型 print("Wrong value!")

运行结果:

Python try-except-else-finally的具体使用

Python try-except-else-finally的具体使用

Python try-except-else-finally的具体使用

注意:调用try语句时,try后的所有错误都将被捕捉,一旦遇到错误,立即跳到except语句块,错误之后的语句不再执行

def division(DivideBy): return 42 / DivideBytry: print(division(1)) print(division(0)) print(division(7))except ZeroDivisionError:#except后写错误类型 print("Divided by zero!")

运行结果:

Python try-except-else-finally的具体使用 

try-except-else

和try-except类似,不过如果程序没有错误,也就是没有跳到except语句块,则执行else语句块,如果程序发生错误,即跳到except语句块,则直接跳过else语句块

示例程序:

def division(DivideBy): return 42 / DivideBytry: num = int(input("Please input a integer:n")) print(division(num))except ZeroDivisionError:#except后写错误类型 print("Divided by zero!")except ValueError: print("Wrong input!")else: print("No error. Good job!")

运行结果:

Python try-except-else-finally的具体使用

Python try-except-else-finally的具体使用

Python try-except-else-finally的具体使用 

try-finally

finally:无论try后是否有异常,都要执行

def division(DivideBy): return 42 / DivideBytry: num = int(input("Please input a integer:n")) print(division(num))except ZeroDivisionError: # except后写错误类型 print("Divided by zero!")except ValueError: print("Wrong input!")else: print("No error. Good job!")finally: print("Finished")

运行结果:

Python try-except-else-finally的具体使用

Python try-except-else-finally的具体使用

到此这篇关于Python try-except-else-finally的具体使用的文章就介绍到这了,更多相关Python try-except-else-finally 内容请搜索ABC学习网以前的文章或继续浏览下面的相关文章希望大家以后多多支持ABC学习网!

(window.slotbydup = window.slotbydup || []).push({id: "u6915441",container: "_5rmj5io5v3i",async: true});
评论
评论
发 布