เราสามารถยกเว้นในโค้ดได้โดยการเขียนใหม่ดังนี้
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