Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

วิธีจัดการกับข้อยกเว้น 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