标签:recent pointer exception 设置 文件的 author init assert elf
#语法错误示范一
if
#语法错误示范二
def test:
pass
#语法错误示范三
print(haha)
#用户输入不完整(比如输入为空)或者输入非法(输入不是数字)
num=input(">>: ")
int(num)
#无法完成计算
res1=1/0
res2=1+‘str‘
>>> l=[‘egon‘,‘aa‘]
>>> l[3]
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IndexError: list index out of range
>>> dic={‘name‘:‘egon‘}
>>> dic[‘age‘]
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
KeyError: ‘age‘
>>> s=‘hello‘
>>> int(s)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: invalid literal for int() with base 10: ‘hello‘
AttributeError 试图访问一个对象没有的树形,比如foo.x,但是foo没有属性x
IOError 输入/输出异常;基本上是无法打开文件
ImportError 无法引入模块或包;基本上是路径问题或名称错误
IndentationError 语法错误(的子类) ;代码没有正确对齐
IndexError 下标索引超出序列边界,比如当x只有三个元素,却试图访问x[5]
KeyError 试图访问字典里不存在的键
KeyboardInterrupt Ctrl+C被按下
NameError 使用一个还未被赋予对象的变量
SyntaxError Python代码非法,代码不能编译(个人认为这是语法错误,写错了)
TypeError 传入对象类型与要求的不符合
UnboundLocalError 试图访问一个还未被设置的局部变量,基本上是由于另有一个同名的全局变量,
导致你以为正在访问它
ValueError 传入一个调用者不期望的值,即使值的类型是正确的
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
num1=input(‘>>: ‘) #输入一个字符串试试
int(num1)
#_*_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]()
try:
被检测的代码块
except 异常类型:
try中一旦检测到异常,就执行这个位置的逻辑
f = open(‘a.txt‘)
g = (line.strip() for line in f)
for line in g:
print(line)
else:
f.close()
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()
‘‘‘
# 未捕获到异常,程序直接报错
s1 = ‘hello‘
try:
int(s1)
except IndexError as e:
print e
s1 = ‘hello‘
try:
int(s1)
except IndexError as e:
print(e)
except KeyError as e:
print(e)
except ValueError as e:
print(e)
s1 = ‘hello‘
try:
int(s1)
except Exception as e:
print(e)
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)
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)
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(‘无论异常与否,都会执行该模块,通常是进行清理工作‘)
try:
raise TypeError(‘类型错误‘)
except Exception as e:
print(e)
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)
# assert 条件
assert 1 == 1
assert 1 == 2
try:
ret = int(input("number >>>"))
print(ret * "*")
except ValueError:
print("您输入的数据类型有误,请输入一个数字")
except IndexError:
print("超出列表的最大长度了")
except Exception as error:
print("你错了,老铁", error)
else:
print("没有异常的时候执行else中的代码")
finally:
print("不管是否异常去做一些收尾工作")
标签:recent pointer exception 设置 文件的 author init assert elf
原文地址:https://www.cnblogs.com/xiaoqshuo/p/9732845.html