Exception handling in Python
Exception handling is used to handle errors that occur during the execution of a program. Here's an example:
python
try:
x = 10 / 0
except ZeroDivisionError:
print("Error: division by zero")
In this example, we use a try block to attempt to divide the number 10 by 0, which will result in a ZeroDivisionError. We use an except block to catch the exception and print an error message.
No comments:
Post a Comment