python异常处理结构有哪些 python的异常处理结构

主机教程 建站分享 2年前 (2022-11-08) 196次浏览

文章摘要:python异常处理结构有哪些 python的异常处理结构

python中常见的异常处理结构有以下几种 1.try…except结构 except语句中可以通过调用异常处 […]

python中常见的异常处理结构有以下几种

1.try…except结构

except语句中可以通过调用异常处理器对异常进行处理,从而继续往下执行程序。

try…except结构使用方法:

s = 'Hello girl!'

try:

print s[100]

except IndexError:

print 'error...'

print 'continue'

2.try…finally结构

finally语句表示无论异常发生与否,finally中的语句都会继续执行,finally语句执行完毕后程序会中断。

try…finally结构使用方法:

s = 'Hello girl!'

try:

print s[100]

finally:

print 'error...'

print 'continue'

3.with…as结构

with…as语句中发生异常时,会调用默认的异常处理器对异常进行处理。

with…as结构使用方法:

with open('nothing.txt','r') as f:

f.read()

print 2/0

print 'continue


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python异常处理结构有哪些 python的异常处理结构
文章链接:http://www.7966.org/post/13152.html
转载请注明出处

喜欢 (0)