标签:
python在执行的时候,如果遇到异常代码,则会中断此次运行,为了避免出现中断,并且增加代码的友好型,使用异常处理可以保证异常代码后的代码正常执行,还可以自定义返回错误信息
案例:
while True: res1 = input(‘请输入数字: ‘) res2 = input(‘请在输入一个数字:‘) res = int(res1) + int(res2) print(‘%s和%s相加的结果为:%s‘ %(res1,res2,res)) 运行: 请输入数字: 1 请在输入一个数字:2 1和2相加的结果为:3 请输入数字: 1 请在输入一个数字:a Traceback (most recent call last): File "D:/study-file/git/gitlab/study/code/day08/异常处理.py", line 10, in <module> res = int(res1) + int(res2) ValueError: invalid literal for int() with base 10: ‘a‘ Process finished with exit code 1
发现我如果输入一个非数字的字符串,则直接报错,并中断了程序运行,下面使用异常处理的知识,可以做到自定义报错信息,而且程序不会中断
ArithmeticError
AssertionError
AttributeError
BaseException
BufferError
BytesWarning
DeprecationWarning
EnvironmentError
EOFError
Exception
FloatingPointError
FutureWarning
GeneratorExit
ImportError
ImportWarning
IndentationError
IndexError
IOError
KeyboardInterrupt
KeyError
LookupError
MemoryError
NameError
NotImplementedError
OSError
OverflowError
PendingDeprecationWarning
ReferenceError
RuntimeError
RuntimeWarning
StandardError
StopIteration
SyntaxError
SyntaxWarning
SystemError
SystemExit
TabError
TypeError
UnboundLocalError
UnicodeDecodeError
UnicodeEncodeError
UnicodeError
UnicodeTranslateError
UnicodeWarning
UserWarning
ValueError
Warning
ZeroDivisionError
try: # 主代码块 pass except KeyError,e: # 异常时,执行该块 pass else: # 主代码块执行完,执行该块 pass finally: # 无论异常与否,最终执行该块 pass
while True: res1 = input(‘请输入数字: ‘) res2 = input(‘请在输入一个数字:‘) try: res = int(res1) + int(res2) print(‘%s和%s相加的结果为:%s‘ %(res1,res2,res)) except ValueError as e: print(e) 运行: 请输入数字: 1 请在输入一个数字:2 1和2相加的结果为:3 请输入数字: 1 请在输入一个数字:asdasdasd invalid literal for int() with base 10: ‘asdasdasd‘ 请输入数字: 1 请在输入一个数字:3 1和3相加的结果为:4 请输入数字:
发现,即使是输入错误类型,也只是中断了此次操作,不影响下次操作,而且还友好的返回了错误信息。问题又来了,如果我无法判定错误类型到底是什么怎么办,我不可能把所有的异常都定义一遍=吧。python是不会让你这么干的,下面用到了万能错误类型:Exception,他可以捕获任意异常
try: int(‘adasd‘) except Exception as e: print(e) try: a = [1,2,a,4] except Exception as e: print(e) try: p = {oioio} except Exception as e: print(e) 输出结果: invalid literal for int() with base 10: ‘adasd‘ name ‘a‘ is not defined name ‘oioio‘ is not defined
接下来你可能要问了,既然有这个万能异常,其他异常是不是就可以忽略了!当然不是,对于特殊处理或提醒的异常需要先定义,最后定义Exception来确保程序正常运行。
s1 = ‘hello‘ try: int(s1) except KeyError,e: print ‘键错误‘ except IndexError,e: print ‘索引错误‘ except Exception, e: print ‘错误‘
使用raise 来主动触发异常,在try中如果有raise的话,则主代码将不执行,自动开始异常处理
try: a = 1 b = 2 c = a + b print(c) except Exception as e: print(e) else: print(‘异常处理else‘) finally: print(‘异常处理finally‘) 输出结果: 3 异常处理else 异常处理finally
下面使用raise 主动触发异常
try: raise IndexError(‘索引错误‘) a = 1 b = 2 c = a + b print(c) except Exception as e: print(e) else: print(‘异常处理else‘) finally: print(‘异常处理finally‘) 输出结果: 索引错误 异常处理finally
class MyException(Exception): def __init__(self, msg): self.message = msg def __str__(self): return self.message try: raise MyException(‘我的异常‘) except MyException as e: print(e) 输出结果: 我的异常
对执行加一个判断条件,如果assert 后面条件成立,则不出错,如果不成立,则报错
#assert 条件 assert 1 == 1 条件成立 assert 1 == 2 条件不成立
标签:
原文地址:http://www.cnblogs.com/pycode/p/yichang.html