What lines will be in is the display output of the following…
What lines will be in is the display output of the following code? Type the answer below. class OnlyEvens (Exception): passtry: num = 7 if int(num) % 2 != 0: raise OnlyEvens (“Number is wrong”) print(‘Number is even’)except OnlyEvens as e: print(‘Need an even’)except Exception: print(‘Something went wrong’)else: print(‘All OK ‘)finally: print (‘Normal exit’)