PYTHON异常处理
Posted heyue13
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PYTHON异常处理相关的知识,希望对你有一定的参考价值。
# 异常处理
‘‘‘异常处理格式
try:
程序
except Exception as 异常名称:
异常处理部分
‘‘‘
try:
for i in range(0,10):
print(i)
if (i==4):
print(kkk)
print("hello")
except Exception as err:
print(err)
------
0
1
2
3
4
name ‘kkk‘ is not defined
# 异常后的程序继续
for i in range(0,10):
try:
print(i)
if (i==4):
print(kkk)
except Exception as err:
print(err)
print("hello")
-------
0
1
2
3
4
name ‘kkk‘ is not defined
5
6
7
8
9
hello
以上是关于PYTHON异常处理的主要内容,如果未能解决你的问题,请参考以下文章