Exceptional Handling in python

Share via:

Exceptional Handling in python

Exception handling allows developers to manage errors and unexpected situations.
Exception handling is the process of managing errors and unexpected events that occur during the execution of a program.
When a Python program encounters an error, it raises an exception, which interrupts the normal flow of the program. Exception handling allows developers to handle these exceptions, ensuring that the program can recover from errors and continue executing with the normal flow.
Advantages of using Exceptional Handling
1. Robustness of code
2. Debugging
3. Clean code
4. Prevention of data loss
Disadvantages of using Exceptional handling
1. Increases the code complexity.
2. False sense of security
3. Performance overhead
You can handle exceptions in Python using try, except, and finally keywords.
try-except Block: To catch the exception.
▪️ Try and except statements are used to catch and handle exceptions in Python.
▪️ If an exception occurs within the try block, Python looks for an except block that can handle that specific type of exception.
Syntax:
try: Statements to be executed.
except: Statements get executed if an exception occurs.
Example:

 

Handling Multiple Exceptions
▪️ Python supports handling multiple exceptions within a single try block by specifying multiple except blocks or using a tuple of exception types.
▪️ A try statement can have more than one except clause, to specify handlers for different exceptions and at most one handler will be executed.
Syntax:
try: Statements that are to be executed.
except exception_1:
          Statements
# if exception_1 occurs, this block will be executed
except exception_2:
Statements
# if exception_2 occurs, this block will be executed
Example:

 

Try with else clause.
▪️ It provides a way to differentiate between the code that might raise an exception and the code that should execute only if no exceptions are raised in the code.
▪️ The else clause is used to execute code only if no exceptions occur in the try block.
Syntax:
try:
    # Code that may raise an exception
except Exceptiontype1:
    # Handle Exceptiontype1
except Exceptiontype2:
    # Handle Exceptiontype2
# More except blocks if needed
else:
    # Code to execute if no exceptions occur in the try block
Example:

 

Finally, Keyword
▪️ The final block is used to define cleanup actions that must be executed whether an exception occurs or not.
▪️ It guarantees that specific code will be executed under all circumstances, irrespective of whether an exception is triggered and regardless of whether it’s handled or not.
▪️ The final block is commonly used for releasing resources, closing files, or performing cleanup tasks that need to occur regardless of the program’s state.
▪️ If an exception is raised and not caught, the finally block still executes before the exception propagates further.
Syntax:
try:
    # Code that may raise an exception
except ExceptionType:
    # Handle the exception
finally:
    # Code that always executes
Example:

 

raise – raising exception.
▪️ The raise statement is used in error handling to intentionally raise exceptions during program execution.
▪️ It serves several purposes, including signaling errors, enforcing preconditions, and controlling program flow.
▪️ It allows developers to handle exceptional conditions or unexpected situations by signaling that an error has occurred in the program.
Syntax:
raise ExceptionClassName(“Optional error message”)
Example:

 

Author    : Venkat Vinod Kumar Siram 
LinkedIn : https://www.linkedin.com/in/vinodsiram/
Thank you for giving your valuable time to read the above information. Please click here to subscribe for further updates.
KTExperts is always active on social media platforms.
Facebook  : https://www.facebook.com/ktexperts
LinkedIn    : https://www.linkedin.com/company/ktexperts/
Twitter       : https://twitter.com/ktexpertsadmin
YouTube   :  https://www.youtube.com/c/ktexperts
Instagram  : https://www.instagram.com/knowledgesharingplatform
Share via:
Note: Please test scripts in Non Prod before trying in Production.
1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5.00 out of 5)
Loading...

Add Comment