Python - - 函数 - - 异常处理
2021-06-15 11:04
标签:recent pointer exception 设置 文件的 author init assert elf Python - - 函数 - - 异常处理 标签:recent pointer exception 设置 文件的 author init assert elf 原文地址:https://www.cnblogs.com/xiaoqshuo/p/9732845.html目录
1,异常和错误
1.1 程序中难免出现错误,而错误分成两种
1.1.1. 语法错误(这种错误,根本过不了python解释器的语法检测,必须在程序执行前就改正)
#语法错误示范一
if
#语法错误示范二
def test:
pass
#语法错误示范三
print(haha)
1.1.2. 逻辑错误(逻辑错误)
#用户输入不完整(比如输入为空)或者输入非法(输入不是数字)
num=input(">>: ")
int(num)
#无法完成计算
res1=1/0
res2=1+‘str‘
1.2 什么是异常
1.3 python中的异常种类
1.3.1 触发IndexError
>>> l=[‘egon‘,‘aa‘]
>>> l[3]
Traceback (most recent call last):
File "
1.3.2 触发KeyError
>>> dic={‘name‘:‘egon‘}
>>> dic[‘age‘]
Traceback (most recent call last):
File "
1.3.3 触发ValueError
>>> s=‘hello‘
>>> int(s)
Traceback (most recent call last):
File "
1.3.4 常用异常
AttributeError 试图访问一个对象没有的树形,比如foo.x,但是foo没有属性x
IOError 输入/输出异常;基本上是无法打开文件
ImportError 无法引入模块或包;基本上是路径问题或名称错误
IndentationError 语法错误(的子类) ;代码没有正确对齐
IndexError 下标索引超出序列边界,比如当x只有三个元素,却试图访问x[5]
KeyError 试图访问字典里不存在的键
KeyboardInterrupt Ctrl+C被按下
NameError 使用一个还未被赋予对象的变量
SyntaxError Python代码非法,代码不能编译(个人认为这是语法错误,写错了)
TypeError 传入对象类型与要求的不符合
UnboundLocalError 试图访问一个还未被设置的局部变量,基本上是由于另有一个同名的全局变量,
导致你以为正在访问它
ValueError 传入一个调用者不期望的值,即使值的类型是正确的
1.3.5 更多异常
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
2,异常处理
2.1 什么是异常?
2.2 什么是异常处理
2.3 为什么要进行异常处理?
2.4 如何进行异常处理?
2.4.1 使用if判断式
正常的代码
num1=input(‘>>: ‘) #输入一个字符串试试
int(num1)
使用if判断进行异常处理
#_*_coding:utf-8_*_
__author__ = ‘Linhaifeng‘
num1=input(‘>>: ‘) #输入一个字符串试试
if num1.isdigit():
int(num1) #我们的正统程序放到了这里,其余的都属于异常处理范畴
elif num1.isspace():
print(‘输入的是空格,就执行我这里的逻辑‘)
elif len(num1) == 0:
print(‘输入的是空,就执行我这里的逻辑‘)
else:
print(‘其他情情况,执行我这里的逻辑‘)
‘‘‘
问题一:
使用if的方式我们只为第一段代码加上了异常处理,但这些if,跟你的代码逻辑并无关系,这样你的代码会因为可读性差而不容易被看懂
问题二:
这只是我们代码中的一个小逻辑,如果类似的逻辑多,那么每一次都需要判断这些内容,就会倒置我们的代码特别冗长。
‘‘‘
之前用的异常处理机制
def test():
print(‘test running‘)
choice_dic={
‘1‘:test
}
while True:
choice=input(‘>>: ‘).strip()
if not choice or choice not in choice_dic:continue #这便是一种异常处理机制啊
choice_dic[choice]()
2.4.2 python为每一种异常定制了一个类型,然后提供了一种特定的语法结构用来进行异常处理
2.4.2.1基本语法
try:
被检测的代码块
except 异常类型:
try中一旦检测到异常,就执行这个位置的逻辑
读文件例1
f = open(‘a.txt‘)
g = (line.strip() for line in f)
for line in g:
print(line)
else:
f.close()
读文件例2
try:
f = open(‘a.txt‘)
g = (line.strip() for line in f)
print(next(g))
print(next(g))
print(next(g))
print(next(g))
print(next(g))
except StopIteration:
f.close()
‘‘‘
next(g)会触发迭代f,依次next(g)就可以读取文件的一行行内容,无论文件a.txt有多大,同一时刻内存中只有一行内容。
提示:g是基于文件句柄f而存在的,因而只能在next(g)抛出异常StopIteration后才可以执行f.close()
‘‘‘
2.4.2.2 异常类只能用来处理指定的异常情况,如果非指定异常则无法处理
# 未捕获到异常,程序直接报错
s1 = ‘hello‘
try:
int(s1)
except IndexError as e:
print e
2.4.2.3 多分支
s1 = ‘hello‘
try:
int(s1)
except IndexError as e:
print(e)
except KeyError as e:
print(e)
except ValueError as e:
print(e)
2.4.2.4 万能异常 在python的异常中,有一个万能异常:Exception,他可以捕获任意异常
s1 = ‘hello‘
try:
int(s1)
except Exception as e:
print(e)
Exception
s1 = ‘hello‘
try:
int(s1)
except Exception,e:
‘丢弃或者执行其他逻辑‘
print(e)
#如果你统一用Exception,没错,是可以捕捉所有异常,但意味着你在处理所有异常时都使用同一个逻辑去处理(这里说的逻辑即当前expect下面跟的代码块)
多分支
s1 = ‘hello‘
try:
int(s1)
except IndexError as e:
print(e)
except KeyError as e:
print(e)
except ValueError as e:
print(e)
多分支+Exception
s1 = ‘hello‘
try:
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)
2.4.2.5
s1 = ‘hello‘
try:
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(‘无论异常与否,都会执行该模块,通常是进行清理工作‘)
2.4.2.6 主动触发异常
try:
raise TypeError(‘类型错误‘)
except Exception as e:
print(e)
2.4.2.7 自定义异常
class EvaException(BaseException):
def __init__(self,msg):
self.msg=msg
def __str__(self):
return self.msg
try:
raise EvaException(‘类型错误‘)
except EvaException as e:
print(e)
2.4.2.8 断言
# assert 条件
assert 1 == 1
assert 1 == 2
2.4.3 try..except的方式比较if的方式的好处
3,什么时候用异常处理
这种东西加的多了,会导致你的代码可读性变差,只有在有些异常无法预知的情况下,才应该加上try...except,其他的逻辑错误应该尽量修正4,本章小结
try:
ret = int(input("number >>>"))
print(ret * "*")
except ValueError:
print("您输入的数据类型有误,请输入一个数字")
except IndexError:
print("超出列表的最大长度了")
except Exception as error:
print("你错了,老铁", error)
else:
print("没有异常的时候执行else中的代码")
finally:
print("不管是否异常去做一些收尾工作")
文章标题:Python - - 函数 - - 异常处理
文章链接:http://soscw.com/index.php/essay/94142.html