码迷,mamicode.com
首页 > 其他好文 > 详细

异常处理

时间:2019-02-14 00:24:55      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:name   --   不能   try   bsp   cep   code   one   finally   

try:
    print("-------")
    open(123.txt, r)
except (IOError, NameError):
    print("######")
    pass


try:
    open(1.txt,r)
except:
    print("异常")


try:
    # open(‘1.txt‘, ‘r‘)
    print("1")
except Exception as result:
    print("异常")
    print(result)
else:
    print("没有异常")
finally:
    print("finally")


print("-----------------------")
try:
    try:
        print(1/0)
    except ValueError as e:
        print(e)
except ZeroDivisionError as e:
    print(e)


print("-----------------------")
try:
    try:
        1 / 0
    except ZeroDivisionError as e:
        print("无能为力,不能处理")
        raise
except ZeroDivisionError as e:
    print(e)

 

异常处理

标签:name   --   不能   try   bsp   cep   code   one   finally   

原文地址:https://www.cnblogs.com/sunBinary/p/10372412.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!