আমরা কোডে এটিকে নিম্নরূপ পুনরায় লেখার মাধ্যমে ব্যতিক্রম করতে পারি
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