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.

Rechercher
Catégories
Lire la suite
Computer Programming
F-String Formatting
F-strings are a powerful and concise way to format strings in Python introduced in Python 3.6....
Computer Programming
Element-specific attributes (alt for images, href for links)
While global attributes can be applied to any HTML element, some attributes are specific to...
Par HTML PROGRAMMING LANGUAGE 2024-08-15 01:47:04 0 3KB
Technology
Everything You Need to Know Before Starting with TebTalks
Par Mpatswe Francis 2024-09-03 22:02:03 0 3KB
Technology
Ransomware Attacks
Ransomware is a type of malicious software (malware) that encrypts the victim’s files or...
Par ALAGAI AUGUSTEN 2024-07-13 08:52:05 0 3KB
Éducation
Interactive Learning Boosts Retention by 75%
Did You Know? Interactive Learning Boosts Retention by 75%! Engage with Your Studies and See the...
Par ALAGAI AUGUSTEN 2024-07-21 19:12:20 0 5KB