Question: Explain what happens when the following code is executed. (a) try: try: print('0') raise ZeroDivisionError print('1') except: print('2') print('3') try: print('4') raise ZeroDivisionError print('5')
Explain what happens when the following code is executed. (a) try: try: print('0') raise ZeroDivisionError print('1') except: print('2') print('3') try: print('4') raise ZeroDivisionError print('5') except: raise print('6') except ZeroDivisionError: try: print('7') raise. print('8') except NameError: print('9') print('10')
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
