如何在一个循环中处理一个Python异常
我们可以将代码中的异常改写成如下方式
a=[]
foo = 'redbullz'
try:
for i in foo:
a.append(i)
print a[8]
except Exception as e:
print e
我们得到以下输出
list index out of range
Process finished with exit code 0
我们可以将代码中的异常改写成如下方式
a=[]
foo = 'redbullz'
try:
for i in foo:
a.append(i)
print a[8]
except Exception as e:
print e
我们得到以下输出
list index out of range
Process finished with exit code 0