Handling Exceptions, and Multiple Handlers

Handling Exceptions with try-except

An exception is an event that disrupts the normal flow of your Python program. Some examples:

  • KeyError – raised when a key is not found in a dictionary
  • IndexError - raised when you try to access an element outside the range of the list

Exception handling is error-checking code in your program that looks for a special circumstance. Exception handling is done with try-except blocks of code.

  • try – the block of code where something could go wrong (may throw an exception)
  • except – the code to run if an exception happens

Multiple exception handlers

If more than one type of exception may be raised in a try block, then you can have multiple exception handlers by adding more except blocks of code to handle each one.

An unhandled exception happens if no exception handler exists.

Raising exceptions

If you have code written that detects an error, execute a raise statement to exit the try block and start executing the except block. Example: raise ValueError(’Invalid number’) creates a new exception of type ValueError, and the string argument explains the error.

Use the as keyword to provide an object for your exception.

Pesquisar
Categorias
Leia Mais
Biology
CAPILLARITY
How does capillary action work in plants? Capillary action in plants works through the...
Por Okiliong Peter 2024-09-04 13:04:49 0 16K
Technology
Advantages of Linux
Linux is a popular choice for a variety of applications due to its numerous advantages. Here are...
Por Tebtalks Access 2024-07-13 07:25:07 0 9K
Physics
S.6 Physics 2 Facilitation 2024
https://acrobat.adobe.com/id/urn:aaid:sc:EU:fd4a0074-f4ff-48b8-9f7c-955b2dd2b3f2
Por Landus Mumbere Expedito 2024-07-19 13:10:33 0 10K
Computer Programming
Lists, List Methods, and List Iteration
Lists are a fundamental data structure in Python used to store ordered collections of items. They...
Technology
Microsoft Access Basics & Database Fundamentals
Best Practices for Microsoft Access
Por Mpatswe Francis 2024-08-14 21:45:18 0 8K
Tebtalks https://tebtalks.com