Exception Handling using try except 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 we are handling exceptions using try and except block.If valid input is entered then try block will exicute and except block will be skipped.If ant error occurs then try block will be skipped and except block will exicute.
Watch this tutorial to learn about exception handling
