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
CSKC| Created: 14-Jan-2019 | Updated: 14-Jan-2019|CBSE12D-2015