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
Computer Programming
Intro to Classes and Objects python Show drafts
Classes: The Blueprints Imagine you're building a house. You wouldn't just start hammering and...
Physics
PHYSICS PAPER 2
Physics paper 2
Por Question Bank 2024-09-05 12:00:28 0 8KB
Computer Programming
Bold Text in HTML
To make text bold in HTML, you can use either the <b> or <strong> element. Both...
Por HTML PROGRAMMING LANGUAGE 2024-08-29 01:49:28 0 5KB
Computer Programming
Creating your first HTML file
Step-by-Step Guide 1. Choose a Text Editor: Basic Text Editors: Notepad (Windows), TextEdit...
Por HTML PROGRAMMING LANGUAGE 2024-08-13 03:22:25 0 5KB
Business
Running a Successful Business
Beyond Profits to Building a Strong Foundation In the world of business, success is often...
Por Olaim 2024-08-03 15:49:40 0 7KB