Watch Now This tutorial has a related video course created by the Real Python team. Watch it together with the written tutorial to deepen your understanding: Raising and Handling Python Exceptions
A Python program terminates as soon as it encounters an error. In Python, an error can be a syntax error or an exception. In this tutorial, you’ll see what an exception is and how it differs from a syntax error. After that, you’ll learn about raising exceptions and making assertions. Then, you’ll get to know all the exception-related keywords that you can use in a try
… except
block to fine-tune how you can work with Python exceptions.
In this tutorial, you’ll learn how to:
- Raise an exception in Python with
raise
- Debug and test your code with
assert
- Handle exceptions with
try
andexcept
- Fine-tune your exception handling with
else
andfinally
You’ll get to know these keywords by walking through a practical example of handling a platform-related exception. Finally, you’ll also learn how to create your own custom Python exceptions.
Get Your Code: Click here to download the free sample code that shows you how exceptions work in Python.
Take the Quiz: Test your knowledge with our interactive “Python Exceptions: An Introduction” quiz. You’ll receive a score upon completion to help you track your learning progress:
Interactive Quiz
Python Exceptions: An IntroductionIn this quiz, you'll test your understanding of Python exceptions. You'll cover the difference between syntax errors and exceptions and learn how to raise exceptions, make assertions, and use the try and except block.
Understanding Exceptions and Syntax Errors
Syntax errors occur when the parser detects an incorrect statement. Observe the following example:
>>> print(0 / 0))
File "<stdin>", line 1
print(0 / 0))
^
SyntaxError: unmatched ')'
The arrow indicates where the parser ran into the syntax error. Additionally, the error message gives you a hint about what went wrong. In this example, there was one bracket too many. Remove it and run your code again:
>>> print(0 / 0)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ZeroDivisionError: division by zero
This time, you ran into an exception error. This type of error occurs whenever syntactically correct Python code results in an error. The last line of the message indicates what type of exception error you ran into.
Instead of just writing exception error, Python details what type of exception error it encountered. In this case, it was a ZeroDivisionError
. Python comes with various built-in exceptions as well as the possibility to create user-defined exceptions.
Raising an Exception in Python
There are scenarios where you might want to stop your program by raising an exception if a condition occurs. You can do this with the raise
keyword:
You can even complement the statement with a custom message. Assume that you’re writing a tiny toy program that expects only numbers up to 5
. You can raise an error when an unwanted condition occurs:
low.py
number = 10
if number > 5:
raise Exception(f"The number should not exceed 5. ({number=})")
print(number)
In this example, you raised an Exception
object and passed it an informative custom message. You built the message using an f-string and a self-documenting expression.
When you run low.py
, you’ll get the following output:
Traceback (most recent call last):
File "./low.py", line 3, in <module>
raise Exception(f"The number should not exceed 5. ({number=})")
Exception: The number should not exceed 5. (number=10)
The program comes to a halt and displays the exception to your terminal or REPL, offering you helpful clues about what went wrong. Note that the final call to print()
never executed, because Python raised the exception before it got to that line of code.
With the raise
keyword, you can raise any exception object in Python and stop your program when an unwanted condition occurs.
Debugging During Development With assert
Before moving on to the most common way of working with exceptions in Python using the try
… except
block, you’ll take a quick look at an exception that’s a bit different than the others.
Python offers a specific exception type that you should only use when debugging your program during development. This exception is the AssertionError
. The AssertionError
is special because you shouldn’t ever raise it yourself using raise
.
Instead, you use the assert
keyword to check whether a condition is met and let Python raise the AssertionError
if the condition isn’t met.
The idea of an assertion is that your program should only attempt to run if certain conditions are in place. If Python checks your assertion and finds that the condition is True
, then that is excellent! The program can continue. If the condition turns out to be False
, then your program raises an AssertionError
exception and stops right away:
Revisit your tiny script, low.py
, from the previous section. Currently, you’re explicitly raising an exception when a certain condition isn’t met:
low.py
number = 1
if number > 5:
raise Exception(f"The number should not exceed 5. ({number=})")
print(number)
Assuming that you’ll handle this constraint safely for your production system, you could replace this conditional statement with an assertion for a quick way to retain this sanity check during development:
low.py
number = 1
assert (number < 5), f"The number should not exceed 5. ({number=})"
print(number)
If the number
in your program is below 5
, then the assertion passes and your script continues with the next line of code. However, if you set number
to a value higher than 5
—for example, 10
—then the outcome of the assertion will be False
:
low.py
number = 10
assert (number < 5), f"The number should not exceed 5. ({number=})"
print(number)
In that case, Python raises an AssertionError
that includes the message you passed, and ends the program execution:
$ python low.py
Traceback (most recent call last):
File "./low.py", line 2, in <module>
assert (number < 5), f"The number should not exceed 5. ({number=})"
^^^^^^^^^^
AssertionError: The number should not exceed 5. (number=10)
In this example, raising an AssertionError
exception is the last thing that the program will do. The program will then come to halt and won’t continue. The call to print()
that follows the assertion won’t execute.
Using assertions in this way can be helpful when you’re debugging your program during development because it can be quite a fast and straightforward to add assertions into your code.
However, you shouldn’t rely on assertions for catching crucial run conditions of your program in production. That’s because Python globally disables assertions when you run it in optimized mode using the -O
and -OO
command line options:
$ python -O low.py
10
In this run of your program, you used the -O
command line option, which removes all assert
statements. Therefore, your script ran all the way to the end and displayed a number that is dreadfully high!
Note: Alternatively, you can also disable assertions through the PYTHONOPTIMIZE
environment variable.
In production, your Python code may run using this optimized mode, which means that assertions aren’t a reliable way to handle runtime errors in production code. They can be quick and useful helpers when your debugging your code, but you should never use assertions to set crucial constraints for your program.
If low.py
should reliably fail when number
is above 5
, then it’s best to stick with raising an exception. However, sometimes you might not want your program to fail when it encounters an exception, so how should you handle those situations?
Handling Exceptions With the try
and except
Block
In Python, you use the try
and except
block to catch and handle exceptions. Python executes code following the try
statement as a normal part of the program. The code that follows the except
statement is the program’s response to any exceptions in the preceding try
clause:
As you saw earlier, when syntactically correct code runs into an error, Python will raise an exception error. This exception error will crash the program if you don’t handle it. In the except
clause, you can determine how your program should respond to exceptions.
The following function can help you understand the try
and except
block:
linux_interaction.py
def linux_interaction():
import sys
if "linux" not in sys.platform:
raise RuntimeError("Function can only run on Linux systems.")
print("Doing Linux things.")
The linux_interaction()
can only run on a Linux system. Python will raise a RuntimeError
exception if you call it on an operating system other then Linux.
Note: Picking the right exception type can sometimes be tricky. Python comes with many built-in exceptions that are hierarchically related, so if you browse the documentation, you’re likely to find a fitting one.
Python even groups some of the exceptions into categories, such as warnings that you should use to indicate warning conditions, and OS exceptions that Python raises depending on system error codes.
If you still didn’t find a fitting exception, then you can create a custom exception.
You can give the function a try
by adding the following code:
linux_interaction.py
# ...
try:
linux_interaction()
except:
pass
The way you handled the error here is by handing out a pass
. If you run this code on a macOS or Windows machine, then you get the following output:
$ python linux_interaction.py
You got nothing in response. The good thing here is that your program didn’t crash. But letting an exception that occurred pass silently is bad practice. You should always at least know about and log if some type of exception occurred when you ran your code.
To this end, you can change pass
into something that generates an informative message:
linux_interaction.py
# ...
try:
linux_interaction()
except:
print("Linux function wasn't executed.")
When you now execute this code on a macOS or Windows machine, you’ll see the message from your except
block printed to the console:
$ python linux_interaction.py
Linux function wasn't executed.
When an exception occurs in a program that runs this function, then the program will continue as well as inform you about the fact that the function call wasn’t successful.
What you didn’t get to see was the type of error that Python raised as a result of the function call. In order to see exactly what went wrong, you’d need to catch the error that the function raised.
The following code is an example where you capture the RuntimeError
and output that message to your screen:
linux_interaction.py
# ...
try:
linux_interaction()
except RuntimeError as error:
print(error)
print("The linux_interaction() function wasn't executed.")
In the except
clause, you assign the RuntimeError
to the temporary variable error
—often also called err
—so that you can access the exception object in the indented block. In this case, you’re printing the object’s string representation, which corresponds to the error message attached to the object.
Running this function on a macOS or Windows machine outputs the following:
$ python linux_interaction.py
Function can only run on Linux systems.
The linux_interaction() function wasn't executed.
The first message is the RuntimeError
, informing you that Python can only execute the function on a Linux machine. The second message tells you which function wasn’t executed.
In the example above, you called a function that you wrote yourself. When you executed the function, you caught the RuntimeError
exception and printed it to your screen.
Here’s another example where you open a file and use a built-in exception:
open_file.py
try:
with open("file.log") as file:
read_data = file.read()
except:
print("Couldn't open file.log")
If file.log
doesn’t exist, then this block of code will output the following:
$ python open_file.py
Couldn't open file.log
This is an informative message, and your program will still continue to run. However, your except
block will currently catch any exception, whether that’s related to not being able to open the file or not. You could lead yourself onto a confusing path if you see this message even when Python raises a completely unrelated exception.
Therefore, it’s always best to be specific when you’re handling an exception.
In the Python docs, you can see that there are a couple of built-in exceptions that you could raise in such a situation, for example:
exception
FileNotFoundError
Raised when a file or directory is requested but doesn’t exist. Corresponds to errno ENOENT. (Source)
You want to handle the situation when Python can’t find the requested file. To catch this type of exception and print it to screen, you could use the following code:
open_file.py
try:
with open("file.log") as file:
read_data = file.read()
except FileNotFoundError as fnf_error:
print(fnf_error)
In this case, if file.log
doesn’t exist, then the output will be the following:
$ python open_file.py
[Errno 2] No such file or directory: 'file.log'
You can have more than one function call in your try
clause and anticipate catching various exceptions. Something to note here is that the code in the try
clause will stop as soon as it encounters any one exception.
Warning: When you use a bare except
clause, then Python catches any exception that inherits from Exception
—which are most built-in exceptions! Catching the parent class, Exception
, hides all errors—even those which you didn’t expect at all. This is why you should avoid bare except
clauses in your Python programs.
Instead, you’ll want to refer to specific exception classes that you want to catch and handle. You can learn more about why this is a good idea in this tutorial.
Look at the following code. Here, you first call linux_interaction()
and then try to open a file:
linux_interaction.py
# ...
try:
linux_interaction()
with open("file.log") as file:
read_data = file.read()
except FileNotFoundError as fnf_error:
print(fnf_error)
except RuntimeError as error:
print(error)
print("Linux linux_interaction() function wasn't executed.")
If you run this code on a macOS or Windows machine, then you’ll see the following:
$ python linux_interaction.py
Function can only run on Linux systems.
Linux linux_interaction() function wasn't executed
Inside the try
clause, you ran into an exception immediately and didn’t get to the part where you attempt to open file.log
. Now look at what happens when you run the code on a Linux machine if the file doesn’t exist:
$ python linux_interaction.py
[Errno 2] No such file or directory: 'file.log'
Note that if you’re handling specific exceptions as you did above, then the order of the except
clauses doesn’t matter too much. It’s all about which of the exceptions Python raises first. As soon as Python raises an exception, it checks the except clauses from top to bottom and executes the first matching one that it finds.
Here are the key takeaways about using Python’s try
… except
statements:
- Python executes a
try
clause up until the point where it encounters the first exception. - Inside the
except
clause—the exception handler—you determine how the program responds to the exception. - You can anticipate multiple exceptions and differentiate how the program should respond to them.
- Avoid using bare
except
clauses, because they can hide unexpected exceptions.
While using try
together with except
is probably the most common error handling that you’ll encounter, there’s more that you can do to fine-tune your program’s response to exceptions.
Proceeding After a Successful Try With else
You can use Python’s else
statement to instruct a program to execute a certain block of code only in the absence of exceptions:
Look at the following example:
linux_interaction.py
# ...
try:
linux_interaction()
except RuntimeError as error:
print(error)
else:
print("Doing even more Linux things.")
If you were to run this code on a Linux system, then the output would be the following:
$ python linux_interaction.py
Doing Linux things.
Doing even more Linux things.
Because the program didn’t run into any exceptions, Python executed the code in the else
clause. However, if you run this code on a macOS or Windows system, then you get a different output:
$ python linux_interaction.py
Function can only run on Linux systems.
The linux_interaction()
function raised a RuntimeError
. You’ve handled the exception, so your program doesn’t crash, and instead prints the exception message to the console. The code nested under the else
clause, however, doesn’t execute, because Python encountered an exception during execution.
Note that structuring your code like this is different from just adding the call to print()
outside of the context of the try
… except
block:
linux_interaction.py
# ...
try:
linux_interaction()
except RuntimeError as error:
print(error)
print("Doing even more Linux things.")
If you don’t nest the print()
call under the else
clause, then it’ll execute even if Python encounters the RuntimeError
that you handle in the except
block above. On a Linux system, the output would be the same, but on macOS or Windows, you’d get the following output:
$ python linux_interaction.py
Function can only run on Linux systems.
Doing even more Linux things.
Nesting code under the else
clause assures that it’ll only run when Python doesn’t encounter any exception when executing the try
… except
block.
You can also create a nested try
… except
block inside the else
clause and catch possible exceptions there as well:
linux_interaction.py
# ...
try:
linux_interaction()
except RuntimeError as error:
print(error)
else:
try:
with open("file.log") as file:
read_data = file.read()
except FileNotFoundError as fnf_error:
print(fnf_error)
If you were to execute this code on a Linux machine, then you’d get the following result:
$ python linux_interaction.py
Doing Linux things.
[Errno 2] No such file or directory: 'file.log'
From the output, you can see that linux_interaction()
ran. Because Python encountered no exceptions, it attempted to open file.log
. That file didn’t exist, but instead of letting the program crash, you caught the FileNotFoundError
exception and printed a message to the console.
Cleaning Up After Execution With finally
Imagine that you always had to implement some sort of action to clean up after executing your code. Python enables you to do so using the finally
clause:
Have a look at the following example:
linux_interaction.py
# ...
try:
linux_interaction()
except RuntimeError as error:
print(error)
else:
try:
with open("file.log") as file:
read_data = file.read()
except FileNotFoundError as fnf_error:
print(fnf_error)
finally:
print("Cleaning up, irrespective of any exceptions.")
In this code, Python will execute everything in the finally
clause. It doesn’t matter if you encounter an exception somewhere in any of the try
… except
blocks. Running the code on a macOS or Windows machine will output the following:
$ python linux_interaction.py
Function can only run on Linux systems.
Cleaning up, irrespective of any exceptions.
Note that the code inside the finally
block will execute regardless of whether or not you’re handling the exceptions:
linux_interaction.py
# ...
try:
linux_interaction()
finally:
print("Cleaning up, irrespective of any exceptions.")
You simplified the example code from above, but linux_interaction()
still raises an exception on a macOS or Windows system. If you now run this code on an operating system other than Linux, then you’ll get the following output:
$ python linux_interaction.py
Cleaning up, irrespective of any exceptions.
Traceback (most recent call last):
...
RuntimeError: Function can only run on Linux systems.
Despite the fact that Python raised the RuntimeError
, the code in the finally
clause still executed and printed the message to your console.
This can be helpful because even code outside of a try
… except
block won’t necessarily execute if your script encounters an unhandled exception. In that case, your program will terminate and the code after the try
… except
block will never run. However, Python will still execute the code inside of the finally
clause. This helps you make sure that resources like file handles and database connections are cleaned up properly.
Creating Custom Exceptions in Python
With the large number of built-in exceptions that Python offers, you’ll likely find a fitting type when deciding which exception to raise. However, sometimes your code won’t fit the mold.
Python makes it straightforward to create custom exception types by inheriting from a built-in exception. Think back to your linux_interaction()
function:
linux_interaction.py
def linux_interaction():
import sys
if "linux" not in sys.platform:
raise RuntimeError("Function can only run on Linux systems.")
print("Doing Linux things.")
# ...
Using a RuntimeError
isn’t a bad choice in this situation, but it would be nice if your exception name was a bit more specific. For this, you can create a custom exception:
linux_interaction.py
class PlatformException(Exception):
"""Incompatible platform."""
# ...
You generally create a custom exception in Python by inheriting from Exception
, which is the base class for most built-in Python exceptions as well. You could also inherit from a different exception, but choosing Exception
is usually the best choice.
That’s really all that you need to do. In the code snippet above, you also added a docstring that describes the exception type and serves as the class body.
Note: Python requires some indented code in the body of your class. Alternatively to using the docstring, you could’ve also used pass
or the ellipsis (...
). However, adding a descriptive docstring adds the most value to your custom exception.
While you can customize your exception object, you don’t need to do that. It’s often enough to give your custom Python exceptions a descriptive name, so you’ll know what happened when Python raises this exception in your code.
Now that you’ve defined the custom exception, you can raise it like any other Python exception:
linux_interaction.py
class PlatformException(Exception):
"""Incompatible platform."""
def linux_interaction():
import sys
if "linux" not in sys.platform:
raise PlatformException("Function can only run on Linux systems.")
print("Doing Linux things.")
# ...
If you now call linux_interaction()
on macOS or Windows, then you’ll see that Python raises your custom exception:
$ python linux_interaction.py
Traceback (most recent call last):
...
PlatformException: Function can only run on Linux systems.
You could even use your custom PlatformException
as a parent class for other custom exceptions that you could descriptively name for each of the platforms that users may run your code on.
Conclusion
At this point, you’re familiar with the basics of using Python exceptions. After seeing the difference between syntax errors and exceptions, you learned about various ways to raise, catch, and handle exceptions in Python. You also learned how you can create your own custom exceptions.
In this article, you gained experience working with the following exception-related keywords:
raise
allows you to raise an exception at any time.assert
enables you to verify if a certain condition is met and raises an exception if it isn’t.- In the
try
clause, all statements are executed until an exception is encountered. except
allows you to catch and handle the exception or exceptions that Python encountered in thetry
clause.else
lets you code sections that should run only when Python encounters no exceptions in thetry
clause.finally
enables you to execute sections of code that should always run, whether or not Python encountered any exceptions.
Get Your Code: Click here to download the free sample code that shows you how exceptions work in Python.
You now understand the basic tools that Python offers for dealing with exceptions. If you’re curious about the topic and want to dive deeper, then take a look at the following tutorials:
- Exception Groups and
except*
- Python
raise
: Effectively Raising Exceptions in Your Code - How to Catch Multiple Exception in Python
- Understanding the Python Traceback
- LBYL vs EAFP: Preventing or Handling Errors in Python
What’s your favorite aspect of exception handling in Python? Share your thoughts in the comments below.
Take the Quiz: Test your knowledge with our interactive “Python Exceptions: An Introduction” quiz. You’ll receive a score upon completion to help you track your learning progress:
Interactive Quiz
Python Exceptions: An IntroductionIn this quiz, you'll test your understanding of Python exceptions. You'll cover the difference between syntax errors and exceptions and learn how to raise exceptions, make assertions, and use the try and except block.
Watch Now This tutorial has a related video course created by the Real Python team. Watch it together with the written tutorial to deepen your understanding: Raising and Handling Python Exceptions