Solved Problem#PYTHON#6522
Problem Statement - B02B-2015D
What will be the output of the following python code ? Explain the try and except used in the code.
U=0 V=6 print 'First' try: print 'Second' M=V/U print 'Third',M except ZeroDivisionError : print V*3 print 'Fourth' except: print V*4 print 'Fifth'
Solution
Solved Problem Understanding
First Second 18 Fourth
The code written within try triggers the exception written after except ZeroDivisionError: in case there is a division by zero error otherwise the default exception is executed