python判断正确错误_python错误和异常
Python3 错误和异常
作为 Python 初学者,在刚学习 Python 编程时,经常会看到⼀些报错信息,在前⾯我们没有提及,这章节我们会专门介绍。Python 有两种错误很容易辨认:语法错误和异常。
Python assert(断⾔)⽤于判断⼀个表达式,在表达式条件为 false 的时候触发异常。
语法错误
Python 的语法错误或者称之为解析错,是初学者经常碰到的,如下实例
>>>while True print('Hello world')
File "", line 1, in ?
while True print('Hello world')
^
SyntaxError: invalid syntax
这个例⼦中,函数 print() 被检查到有错误,是它前⾯缺少了⼀个冒号 : 。
语法分析器指出了出错的⼀⾏,并且在最先到的错误的位置标记了⼀个⼩⼩的箭头。
异常
即便 Python 程序的语法是正确的,在运⾏它的时候,也有可能发⽣错误。运⾏期检测到的错误被称为异常。
⼤多数的异常都不会被程序处理,都以错误信息的形式展现在这⾥:
>>>10 * (1/0) # 0 不能作为除数,触发异常
Traceback (most recent call last):
File "", line 1, in ?
ZeroDivisionError: division by zero
>>> 4 + spam*3 # spam 未定义,触发异常
Traceback (most recent call last):
File "", line 1, in ?
NameError: name 'spam' is not defined
>>> '2' + 2 # int 不能与 str 相加,触发异常
Traceback (most recent call last):
File "", line 1, in ?
TypeError: Can't convert 'int' object to str implicitly
异常以不同的类型出现,这些类型都作为信息的⼀部分打印出来: 例⼦中的类型有 ZeroDivisionError,NameError 和 TypeError。错误信息的前⾯部分显⽰了异常发⽣的上下⽂,并以调⽤栈的形式显⽰具体信息。
异常处理
try/except
异常捕捉可以使⽤ try/except 语句。
以下例⼦中,让⽤户输⼊⼀个合法的整数,但是允许⽤户中断这个程序(使⽤ Control-C 或者操作系统提供的⽅法)。⽤户中断的信息会引发⼀个 KeyboardInterrupt 异常。
while True:
try:
x = int(input("请输⼊⼀个数字: "))
break
except ValueError:
print("您输⼊的不是数字,请再次尝试输⼊!")
try 语句按照如下⽅式⼯作;
⾸先,执⾏ try ⼦句(在关键字 try 和关键字 except 之间的语句)。
如果没有异常发⽣,忽略 except ⼦句,try ⼦句执⾏后结束。
如果在执⾏ try ⼦句的过程中发⽣了异常,那么 try ⼦句余下的部分将被忽略。如果异常的类型和 except 之后的名称相符,那么对应的except ⼦句将被执⾏。
如果⼀个异常没有与任何的 excep 匹配,那么这个异常将会传递给上层的 try 中。
⼀个 try 语句可能包含多个except⼦句,分别来处理不同的特定的异常。最多只有⼀个分⽀会被执⾏。
处理程序将只针对对应的 try ⼦句中的异常进⾏处理,⽽不是其他的 try 的处理程序中的异常。
⼀个except⼦句可以同时处理多个异常,这些异常将被放在⼀个括号⾥成为⼀个元组,例如:
except (RuntimeError, TypeError, NameError):
pass
最后⼀个except⼦句可以忽略异常的名称,它将被当作通配符使⽤。你可以使⽤这种⽅法打印⼀个错误信息,然后再次把异常抛出。
import sys
try:
f = open('')
s = f.readline()
i = int(s.strip())
except OSError as err:
print("OS error: {0}".format(err))
except ValueError:
print("Could not convert data to an integer.")
except:
print("Unexpected error:", _info()[0])
raise
lse
try/except 语句还有⼀个可选的 else ⼦句,如果使⽤这个⼦句,那么必须放在所有的 except ⼦句之后。
else ⼦句将在 try ⼦句没有发⽣任何异常的时候执⾏。
以下实例在 try 语句中判断⽂件是否可以打开,如果打开⽂件时正常的没有发⽣异常则执⾏ else 部分的语句,读取⽂件内容:
没发⽣异常就关闭啊,没发⽣异常就输出啊 这是列⼦
for arg in sys.argv[1:]:
try:
f = open(arg, 'r')
except IOError:
print('cannot open', arg)
else:
print(arg, 'has', adlines()), 'lines')
f.close()
使⽤ else ⼦句⽐把所有的语句都放在 try ⼦句⾥⾯要好,这样可以避免⼀些意想不到,⽽ except ⼜⽆法捕获的异常。
异常处理并不仅仅处理那些直接发⽣在 try ⼦句中的异常,⽽且还能处理⼦句中调⽤的函数(甚⾄间接调⽤的函数)⾥抛出的异常。例如: >>>def this_fails():
x = 1/0
>>> try:
this_fails()
except ZeroDivisionError as err:
print('Handling run-time error:', err)
Handling run-time error: int division or modulo by zero
try-finally 语句
try-finally 语句⽆论是否发⽣异常都将执⾏最后的代码。
以下实例中 finally 语句⽆论异常是否发⽣都会执⾏:
实例
try:
runoob()
except AssertionError as error:
print(error)
else:
try:
with open('file.log') as file:
read_data = ad()
except FileNotFoundError as fnf_error:
print(fnf_error)
finally:
print('这句话,⽆论异常是否发⽣都会执⾏。')
抛出异常
Python 使⽤ raise 语句抛出⼀个指定的异常。
raise语法格式如下:
raise [Exception [, args [, traceback]]]
以下实例如果 x ⼤于 5 就触发异常:
x = 10
python新手代码错了应该怎么改
if x > 5:
raise Exception('x 不能⼤于 5。x 的值为: {}'.format(x))
执⾏以上代码会触发异常:
Traceback (most recent call last):
File "test.py", line 3, in
raise Exception('x 不能⼤于 5。x 的值为: {}'.format(x))
Exception: x 不能⼤于 5。x 的值为: 10
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 类,可以直接继承,或者间接继承,例如: >>>class MyError(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
>>> try:
raise MyError(2*2)
except MyError as e:
print('My exception occurred, value:', e.value)
My exception occurred, value: 4
>>> raise MyError('oops!')
Traceback (most recent call last):
File "", line 1, in ?
__main__.MyError: 'oops!'
在这个例⼦中,类 Exception 默认的 __init__() 被覆盖。
当创建⼀个模块有可能抛出多种不同的异常时,⼀种通常的做法是为这个包建⽴⼀个基础异常类,然后基于这个基础类为不同的错误情况创建不同的⼦类:
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):
class TransitionError(Error):
"""Raised when an operation attempts a state transition that's 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
< = next

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。