python忽略异常的方法

1、try except

忽略异常的最常见方法是使用语句块try except,然后在语句 except 中只有 pass。

importcontextlib


classNonFatalError(Exception):
pass


defnon_idempotent_operation():
raiseNonFatalError(
'Theoperationfailedbecauseofexistingstate'
)


try:
print('tryingnon-idempotentoperation')
non_idempotent_operation()
print('succeeded!')
exceptNonFatalError:
pass

print('done')

#output
#tryingnon-idempotentoperation
#done

在这种情况下,操作失败并忽略错误。

2、contextlib.suppress()

try:except 可以被替换为 contextlib.suppress(),更明确地抑制类异常在 with 块的任何地方发生。

importcontextlib


classNonFatalError(Exception):
pass


defnon_idempotent_operation():
raiseNonFatalError(
'Theoperationfailedbecauseofexistingstate'
)


withcontextlib.suppress(NonFatalError):
print('tryingnon-idempotentoperation')
non_idempotent_operation()
print('succeeded!')

print('done')

#output
#tryingnon-idempotentoperation
#done

以上就是python忽略异常的两种方法,希望对大家有所帮助。更多Python学习指路:Python基础教程

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。