DEV Community

Cover image for Python3: Try-Else Statement
James Kinga
James Kinga

Posted on

Python3: Try-Else Statement

Table of contents

Introduction
What is Try-Else Statement?
Benefits of try-else
Conclusion
Enter fullscreen mode Exit fullscreen mode

Introduction

Errors are common in programming, regardless of the level of experience and competence. These errors are often referred to as exceptions and occur due to many reasons such as unexpected user inputs, network failures, system crashes, etc. In Python, exceptions are handled using the try-except statement. However, there is another useful variation of the try statement called the try-else statement, which we will be discussing in this article.

What is Try-Else Statement?

The try-else statement in Python is used to execute a block of code if no exception is thrown in the try block. It is an optional clause that can be added to the end of a try-except statement. The syntax of the try-else statement is as follows:

try:
    # a block of code that may cause an exception
except ExceptionType:
    # a block of code to handle the exception
else:
    # a block of code that executes if theres no exception raised
Enter fullscreen mode Exit fullscreen mode

In the try block, we write the code that may raise an exception. If an exception is raised, the code in the except block is executed to handle the exception. However, if there is no exception raised in the try block, the code in the else block is executed.

Let's consider an example to understand the try-else statement better. Assume we want to take input from the user and calculate its square. We can write the code using the try-else statement as follows:

try:
    x = int(input("Enter a digit: "))
except ValueError:
    print("Invalid input. Please enter another digit.")
else:
    print("The square of the digit is: ", x*x)
Enter fullscreen mode Exit fullscreen mode

In this code, we use the input() function to take input from the user. However, since the input can be any string, we use the int() function to convert the input into an integer. If the user enters a non-numeric value, a ValueError exception is raised, and the code in the except block is executed, which prints an error message. If the input is a valid integer, the code in the else block is executed, which calculates and prints the square of the number.

Benefits of try-else

Now, let's take a look at some benefits of using the try-else statement in Python.

  1. Improved code readability
  2. Better error handling
  3. Improved code readability

1. Improved code readability

The try-else statement can help make your code more readable and easier to understand. By separating the code that may raise an exception from the code that executes when there is no exception, you can make it clear what your code is doing and how it handles errors.


     try:
        f = open('file.txt', 'r')
        contents = f.read()
        print(contects)
     except IOError:
        print("File not found or could not be read.")
Enter fullscreen mode Exit fullscreen mode

This code opens a file, reads its contents, and prints them. However, if the file does not exist or could not be read, the code in the except block is executed, which prints an error message.

Now, let's rewrite the code using the try-else statement:



     try:
        f = open('file.txt', 'r')
     except IOError:
        print("File not found or could not be read.")
     else:
        contents = f.read()
        print(contects)

In this code, we use the try-else statement to separate the code that may raise an exception from the code that executes when there is no exception. The code in the try block attempts to open the file, and if there is an IOError, the code in the except block is executed. If the file is successfully opened, the code in the else block is executed, which reads the file's contents and prints them. This code is more readable and easier to understand than the previous code.

2. Better error handling

The try-else statement can also help you handle errors more effectively. By separating the code that may raise an exception from the code that executes when there is no exception, you can handle errors more precisely and avoid catching and handling exceptions that are not relevant to the current code.

For example, consider the code below:


     try:
        result = calculate_result()
     except Exception:
        print("An error occurred. Please try again later.")
Enter fullscreen mode Exit fullscreen mode

In this code, we are catching all exceptions that may occur while calling the calculate_result() function. This may include exceptions that are not related to the function's logic, such as network errors or system crashes. By catching all exceptions, we are not handling errors precisely and may hide important error messages.

Now, let's rewrite the code using the try-else statement:



    try:
       result = calculate_result()
    except ValueError:
       print("Invalid input. Please enter a valid number.")
    except ZeroDivisionError:
       print("Cannot divide by zero.")
    else:
       print("The result is:", result)

In this code, we use the try-else statement to handle specific exceptions that may occur while calling the calculate_result() function. If the function raises a ValueError, we print an error message indicating that the input was invalid. If the function raises a ZeroDivisionError, we print an error message indicating that the input was zero, and division by zero is not allowed. If there is no exception raised, we print the result. This code handles errors more precisely and provides better feedback to the user.

3. Cleaner code

The try-else statement can help you write cleaner code by eliminating unnecessary code blocks and reducing the nesting level of your code. By separating the code that may raise an exception from the code that executes when there is no exception, you can write cleaner and more concise code.

For example, consider the following code:


    try:
       x = int(input("Enter a number: "))
    except ValueError:
       print("Invalid input. Please enter a valid number.")
    else:
       try:
          result = 100/x
       except ZeroDivisionError:
          print("Cannot divide by zero.")
       else:
          print("The result is:", result)
Enter fullscreen mode Exit fullscreen mode

In this code, we use two nested try-except statements to handle different types of exceptions. The outer try-except statement handles the ValueError exception that may occur while converting the input to an integer. The inner try-except statement handles the ZeroDivisionError exception that may occur while dividing 100 by the input. This code is more complex and harder to read than the previous code.

Now, let's rewrite the code using the try-else statement:



    try:
       x = int(input("Enter a number: "))
    except ValueError:
       print("Invalid input. Please enter a valid number.")
    else:
       if x == 0:
          print("Cannot divide by zero.")
       else:
          result = 100/x
          print("The result is:", result)

In this code, we use the try-else statement to handle the input conversion and the division in a single block of code. If the input is zero, we print an error message. If the input is valid, we calculate the result and print it. This code is cleaner and easier to read than the previous code.

Conclusion

In conclusion, the try-else statement in Python is a useful variation of the try-except statement that can help you write cleaner, more readable, and more effective code. By separating the code that may raise an exception from the code that executes when there is no exception, you can handle errors more precisely, provide better feedback to the user, and write cleaner and more concise.

Top comments (0)