๐Every Exception in Python is a class.
๐All exception classes are child classes
of BaseException, i.e., every exception
class extends BaseException either
directly or indirectly.
๐Hence, BaseException acts as the root
for the Python Exception Hierarchy.
๐Most of the time, being a programmer,
we have to concentrate on Exception
and its child classes.
Customized Exception Handling by using try-except
๐It is highly recommended to handle
exceptions.
๐The code which may raise an exception is
called risky code, and we have to take
risky code inside the try block.
๐The corresponding handling code we
have to take inside the except block.


No comments:
Post a Comment
Thank you Very Much.For Given Comment