We can the exception in the code by rewriting it as follows
a=[] foo = 'redbullz' try: for i in foo: a.append(i) print a[8] except Exception as e: print e
We get following output
list index out of range Process finished with exit code 0
We can the exception in the code by rewriting it as follows
a=[] foo = 'redbullz' try: for i in foo: a.append(i) print a[8] except Exception as e: print e
We get following output
list index out of range Process finished with exit code 0