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

2022-09-29 0 736

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 / DivideBy
try:
    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 / DivideBy
try:
    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 / DivideBy
try:
    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 Python try-except-else-finally的具体使用 http://www.ox520.com/29461.html

常见问题

相关文章

发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务