您的位置:首页技术文章
文章详情页

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

【字号: 日期:2022-08-07 08:01:55浏览:4作者:猪猪
目录try-excepttry-except-elsetry-finallytry-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 内容请搜索好吧啦网以前的文章或继续浏览下面的相关文章希望大家以后多多支持好吧啦网!

标签: Python 编程
相关文章: