介绍一下python的异常处理机制,python中异常处理的方法
本文介绍了Python中的异常处理,并通过示例代码详细介绍了异常处理。对大家的学习或者工作都有一定的参考价值,有需要的朋友可以参考一下。
00-1010 1.什么是例外2。例外的类型。常见异常类2。例外的例子:3。异常处理1。基本语法尝试.例外2。多分支除外.except和通用异常:Exception3,try/except.else4。异常的最终执行最终4。抛出异常引发5。
目录
在python中,由错误触发的异常如下
一、什么是异常
在python中,不同的异常可以用不同的类型来标识,一个异常标识一个错误。
二、异常的种类
Error试图访问一个对象没有的树,比如foo.x,但是foo没有AttributeError输入/输出异常;基本上文件打不开;ImportError无法导入模块或包;基本上就是路径问题或者名字不对。IndentationError语法错误(的子类);代码没有正确对齐。IndexError下标索引超出了序列边界。例如,当X只有三个元素,但试图访问x[5]KeyError时,会试图访问字典中不存在的键。键盘中断Ctrl+C被按下。NameError使用了一个尚未给对象的变量。SyntaxError Python代码非法,代码无法编译(个人认为是语法错误,写错了)。TypeError的传入对象类型不符合要求。UnboundLocalError试图访问一个还没有设置的局部变量,基本上是因为有另一个同名的全局变量,让你以为是在访问它。ValueError传入调用方不期望的值,即使值类型是正确的。
1 、常用异常类
# TypeError:int不能迭代int类型。
对于3:中的我
及格
#值错误
Num=input (3360) #输入hello
int(数字)
# NameError
美国汽车协会
# IndexError
l=[egon , aa]
l[3]
# KeyError
dic={name:egon}
dic[年龄]
#属性错误
Foo:pass级通行证
Foo.x
# ZeroDivisionError:无法完成计算
res1=1/0
res2=1 字符串
2、异常举例:
三、异常处理
尝试:
检测到的代码块
例外类型除外:
一旦在try中检测到异常,就执行这个位置的逻辑。
举个例子
尝试:
f=[ a , a , a , a , a , a ,]
g=(line . strip()for line in f)# tuple派生
打印(下一个(g))
打印(下一个(g))
打印(下一个(g))
打印(下一个(g))
打印(下一个(g))
StopIteration:除外
f.close()
类只能用于处理指定的异常,如果未指定异常,则无法处理该类。
:py;">s1 = hello
try:
int(s1)
except IndexError as e: # 未捕获到异常,程序直接报错
print(e)
2、多分支异常 except..except与万能异常:Exception
s1 = hellotry:
int(s1)
except IndexError as e:
print(e)
except KeyError as e:
print(e)
except ValueError as e:
print(e)
except Exception as e:
print(e)
3、try/except...else
try/except 语句还有一个可选的 else 子句,如果使用这个子句,那么必须放在所有的 except 子句之后。
else 子句将在 try 子句没有发生任何异常的时候执行。
for arg in sys.argv[1:]:try:
f = open(arg, r)
except IOError:
print(cannot open, arg)
else:
print(arg, has, len(f.readlines()), lines)
f.close()
4、异常的最终执行finally
try-finally 语句无论是否发生异常都将执行最后的代码。
定义清理行为:
s1 = hellotry:
int(s1)
except IndexError as e:
print(e)
except KeyError as e:
print(e)
except ValueError as e:
print(e)
#except Exception as e:
# print(e)
else:
print(try内代码块没有异常则执行我)
finally:
print(无论异常与否,都会执行该模块,通常是进行清理工作)
#invalid literal for int() with base 10: 'hello'
#无论异常与否,都会执行该模块,通常是进行清理工作
四、抛出异常raise
Python 使用 raise 语句抛出一个指定的异常。
raise语法格式如下:
raise [Exception [, args [, traceback]]]
try:raise TypeError(抛出异常,类型错误)
except Exception as e:
print(e)
raise 唯一的一个参数指定了要被抛出的异常。它必须是一个异常的实例或者是异常的类(也就是 Exception 的子类)。
如果你只想知道这是否抛出了一个异常,并不想去处理它,那么一个简单的 raise 语句就可以再次把它抛出。
try:raise NameError(HiThere)
except NameError:
print(An exception flew by!)
raise
#An exception flew by!
#Traceback (most recent call last):
# File "", line 2, in ?
#NameError: HiThere
五、自定义异常
你可以通过创建一个新的异常类来拥有自己的异常。异常类继承自 Exception 类,可以直接继承,或者间接继承,例如:
在这个例子中,类 Exception 默认的 __init__() 被覆盖。
class EgonException(Exception):def __init__(self, msg):
self.msg = msg
def __str__(self):
return self.msg
try:
raise EgonException(抛出异常,类型错误)
except EgonException as e:
print(e)
#抛出异常,类型错误
基础异常类
当创建一个模块有可能抛出多种不同的异常时,一种通常的做法是为这个包建立一个基础异常类,然后基于这个基础类为不同的错误情况创建不同的子类:
大多数的异常的名字都以"Error"结尾,就跟标准的异常命名一样。
class Error(Exception):"""Base class for exceptions in this module."""
pass
class InputError(Error):
"""Exception raised for errors in the input.
Attributes:
expression -- input expression in which the error occurred
message -- explanation of the error
"""
def __init__(self, expression, message):
self.expression = expression
self.message = message
class TransitionError(Error):
"""Raised when an operation attempts a state transition thats not
allowed.
Attributes:
previous -- state at beginning of transition
next -- attempted new state
message -- explanation of why the specific transition is not allowed
"""
def __init__(self, previous, next, message):
self.previous = previous
self.next = next
self.message = message
六、断言assert
assert(断言)用于判断一个表达式,在表达式条件为 false 的时候触发异常。
断言可以在条件不满足程序运行的情况下直接返回错误,而不必等待程序运行后出现崩溃的情况。
语法格式如下:
assert expression
等价于:
if not expression:raise AssertionError
assert 后面也可以紧跟参数:
assert expression [, arguments]
等价于:
if not expression:raise AssertionError(arguments)
以下实例判断当前系统是否为 Linux,如果不满足条件则直接触发异常,不必执行接下来的代码:
import sysassert (linux in sys.platform), "该代码只能在 Linux 下执行"
# 接下来要执行的代码
# Traceback (most recent call last):
# File "C:/PycharmProjects/untitled/run.py", line 2, in
# assert (linux in sys.platform), "该代码只能在 Linux 下执行"
# AssertionError: 该代码只能在 Linux 下执行
到此这篇关于Python异常处理的文章就介绍到这了。希望对大家的学习有所帮助,也希望大家多多支持盛行IT软件开发工作室。
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。