Python异常处理
Posted 黑。白。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python异常处理相关的知识,希望对你有一定的参考价值。
# l = [1,2,3]
# d = {"name":"11"}
# import traceback
# try:
# name = d["name"]
# # l[4]
# # except KeyError as e:
# # print(e)
# # print("出现异常了")
# # except IndexError as e:
# # print("出现下标不存在的异常了")
# except Exception as e:
# traceback.print_exc()
# msg = traceback.format_exc()
# print(msg)
# else:
# print("没有出现异常")
# finally:
# print("不管你出不出异常他都会走")
以上是关于Python异常处理的主要内容,如果未能解决你的问题,请参考以下文章
在 Python 多处理进程中运行较慢的 OpenCV 代码片段