Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 448 Bytes

Exception Handling.md

File metadata and controls

17 lines (15 loc) · 448 Bytes

exception = An event that interrupts the flow of a program (ZeroDivisionError, TypeError, ValueError) 1.try, 2.except, 3.finally

ex: try: number = int(input("Enter a number: ")) print(1 / number) except ZeroDivisionError: print("You can't divide by zero IDIOT!") except ValueError: print("Enter only numbers please!") except Exception: print("Something went wrong!") finally: print("Do some cleanup here")