How to use exception handling in Python

Exception handling in Python can be done using the try and except statements. The try statement allows you to test a block of code for errors. The except statement allows you to handle the error.

For example:

try:
# some code
except Exception as e:
# handle the exception
print(e)

In this example, the try statement will execute the code within it. If an error occurs, the except statement will catch the exception and print it.