Exception Handling using Raise and try finally in Python Programming Language

In this tutorial we will learn about the exception handling.Exception is represents the error usually we will allow python to handle this error by displaying it on the screen but instead of this errors we can show a proper message and handle this type of exceptions.There are some standard exceptions like ValueError TypeError and ImportError etc.Here in this tutorial we are discussing how to raise an exception in program and we can see how to use finally clause with try block.



Watch this tutorial to learn about exception handling