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
Educação
Reconstruction timeline
January 1863: Abraham Lincoln issues the Emancipation Proclamation, freeing enslaved...
Por Modern American History 2024-07-19 05:45:48 0 9K
Technology
Copyright infringement
Copyright infringement refers to the unauthorized use, reproduction, distribution, or adaptation...
Por ALAGAI AUGUSTEN 2024-07-16 16:55:44 0 11K
Technology
Web Development Best Practices
Web Development Best Practices: A Comprehensive Guide Web development is an ever-evolving field,...
Por ALAGAI AUGUSTEN 2024-07-26 17:54:12 0 17K
Computer Programming
Types Summary and Type Conversion
Types summary The following is a summary of the different Python types: string -...
Technology
Understanding the ROUND Function
The ROUND function in Excel is used to round a number to a specified number of decimal places....
Por Microsoft Excel 2024-09-03 03:30:30 0 12K
Talksphare https://talksphare.com