码迷,mamicode.com
首页 > 编程语言 > 详细

python异常处理

时间:2018-02-11 00:07:51      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:python   raise   自定义   strong   assert   arm   rip   def   pre   

什么是异常

异常就是程序运行时发生错误的信号

错误分为两种

1、语法错误

pychram 能检查出来的错误

if 

def test:
pass

2、逻辑错误

pycharm 不能检查的错误

num = inpu(">>").strip()
int(num)

异常处理

ss = "hello"
# s = "10"
try:
    int(s)
except TypeError as e:
    print(e)
except KeyError as e:
    print(e)
except Exception as e:  # 万能异常
    print(e)
else:
    print("没有异常")
finally:
    print("有没有异常都要执行我")

自定义异常

class Myerror(Exception):
    pass
    
    
try:
    raise Myerror("hi")
except Myerror as e:
    print(e)

断言

assert 1 == 1
assert 1 == 2  # 触发AssertionError异常

python异常处理

标签:python   raise   自定义   strong   assert   arm   rip   def   pre   

原文地址:https://www.cnblogs.com/Jason-lin/p/8440057.html

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