SlideShare a Scribd company logo
PYTHON PROGRAMMING

Engr. Ranel O. Padon

X. EXCEPTION HANDLING
PYTHON PROGRAMMING TOPICS
I

• Introduction to Python Programming

II

• Python Basics

III

• Controlling the Program Flow

IV

• Program Components: Functions, Classes, Packages, and Modules

V

• Sequences (List and Tuples), and Dictionaries

VI

• Object-Based Programming: Classes and Objects

VII

• Customizing Classes and Operator Overloading

VIII

• Object-Oriented Programming: Inheritance and Polymorphism

IX

• Randomization Algorithms

X

• Exception Handling and Assertions

XI

• String Manipulation and Regular Expressions

XII

• File Handling and Processing

XIII

• GUI Programming Using Tkinter
Python Programming - X. Exception Handling and Assertions
Python Programming - X. Exception Handling and Assertions
try
except

Defensive
Programming

else
finally

raise
assert
class Exception
Python Programming - X. Exception Handling and Assertions
http://www.newser.com/story/20282/china-atm-glitch-nets-man-life.html
http://www.newser.com/story/148427/atm-error-lets-man-withdraw-15m-gamble-it-away.html
INTRODUCTION

Exception is an indication of a special event that
occurs during a program’s execution.

Exception indicates that, although the event can occur,
the event occurs infrequently.
INTRODUCTION
INTRODUCTION

When a Python script encounters a situation that
it can't cope with, it raises an exception.

An exception is a Python object that represents an error.
INTRODUCTION
INTRODUCTION
INTRODUCTION | Exceptions
1.
2.
3.
4.
5.
6.
7.
8.
9.

Division by Zero
Addition of two incompatible types.
Accessing a file that is nonexistent.
Accessing a nonexistent index of a sequence.
Deleting a table in a disconnected database server.
Withdrawing money greater than the available amount.
Invalid input bearing angle.
Negative perimeter distance.
…
INTRODUCTION | Exceptions
Resource Leak
Aborting a program component could leave a file or a network
connection in a state in which other programs
are not able to acquire the resource.
EXCEPTION HANDLING
EXCEPTION HANDLING
Advantages
1. handle the error
- catching the exception
- resolving the exception
2. continue processing as if no error had occured
3. programs are more clear, robust and more fault-tolerant
EXCEPTION HANDLING
When no exceptions occur, exception-handling code
incurs little or no performance penalties.
Programs that implement exception handling operate more
efficiently than programs that perform error handling throughout
the program logic.
EXCEPTION HANDLING
Brute-Force Error Handling
EXCEPTION HANDLING
Brute-Force Error Handling
it may work, but intermixing the logic of the program
with the error-handling logic can make the program difficult
to read, modify, maintain and debug—especially in large
applications.
EXCEPTION HANDLING

Exception handling enables the programmer to
remove error-handling code from the “main line”
of the program’s execution.
This improves program clarity and enhances modifiability.
EXCEPTION HANDLING | Python
Mechanism is similar with that used in Modula-3, C# and Java.
Not all programming languages support exception handling.
EXCEPTION HANDLING
EXCEPTION HANDLING | try-except
EXCEPTION HANDLING | try-except
Python uses try statements to enable exception handling.
The try statement encloses statements
that potentially cause exceptions.
A try statement consists of keyword try, followed by a colon
(:), followed by a suite of code in which exceptions may occur,
followed by one or more clauses.
EXCEPTION HANDLING | try-except
Immediately following the try suite may be
one or more except clauses
(also called except handlers).
Each except clause specifies zero or more
exception names that represent the type(s)
of exceptions the except clause can handle.
EXCEPTION HANDLING | try-except

If an exception occurs in a try suite,
the try suite expires and program control
transfers to the first matching except handler
(if there is one) following the try suite.
EXCEPTION HANDLING | try-except

an except handler always should specify the name
of the exception to catch.

an empty except handler should be used only for a
default catch-all case.
EXCEPTION HANDLING | try-except

If no exceptions occur in a try suite,
the interpreter ignores the exception handlers
for that try statement.
EXCEPTION HANDLING | try-except
EXCEPTION HANDLING | else

After the last except clause, an optional else clause
contains code that executes if the code in
the try suite raised no exceptions.
EXCEPTION HANDLING | Summary
EXCEPTION HANDLING | Summary
EXCEPTION HANDLING | Summary
EXCEPTION HANDLING | Summary
EXCEPTION HANDLING | finally

A try suite can be followed by zero except clauses;
in that case, it must be followed by a finally clause.
The code in the finally suite always executes,
regardless of whether an exception occurs.
EXCEPTION HANDLING | finally

Programs frequently request and release resources dynamically.
Programs that obtain certain types of resources (such as files)
sometimes must return those resources explicitly to the system
to avoid resource leaks.
EXCEPTION HANDLING | finally

The finally clause is an ideal location to place
resource deallocation code for resources acquired.
EXCEPTION HANDLING | finally
EXCEPTION HANDLING | finally
EXCEPTION HANDLING | finally
EXCEPTION HANDLING | finally
EXCEPTION HANDLING | Exception

Exceptions are objects of classes that inherit
from class Exception.
Programmer-defined exception classes should
derive directly or indirectly from class Exception.
class Exception
class Exception
(1/2)
class Exception
(2/2)
EXCEPTION HANDLING | raise
Raising/Throwing An Exception
raise keyword

Catching and handling exceptions enables a
program to know when an error has occurred, then to take
actions to minimize the consequences of that error.
EXCEPTION HANDLING | raise

The raise statement may specify an argument or
arguments that initialize the exception object.
In this case, a comma follows the exception name, and the
argument or a tuple of arguments follows the comma.
EXCEPTION HANDLING | raise Args
EXCEPTION HANDLING | raise Args
EXCEPTION HANDLING | Custom
EXCEPTION HANDLING | Custom
EXCEPTION HANDLING | Custom
EXCEPTION HANDLING | assert
An assertion is a sanity-check that you can turn on/off
when you are done with your testing of the program.
Assertion is like a raise-if statement
(or to be more accurate, a raise-if-not statement).
An expression is tested, and if the result comes up false,
an exception is raised.
EXCEPTION HANDLING | assert
Programmers often place assertions
at the start of a function to check for valid input,
and after a function call to check for valid output.
EXCEPTION HANDLING | assert
EXCEPTION HANDLING | assert
EXCEPTION HANDLING | assert
EXCEPTION HANDLING | assert
EXCEPTION HANDLING | assert
EXCEPTION HANDLING | assert
EXCEPTION HANDLING
EXCEPTION HANDLING
REFERENCES
 Deitel, Deitel, Liperi, and Wiedermann - Python: How to Program (2001).

 Disclaimer: Most of the images/information used here have no proper source
citation, and I do not claim ownership of these either. I don’t want to reinvent the
wheel, and I just want to reuse and reintegrate materials that I think are useful or
cool, then present them in another light, form, or perspective. Moreover, the
images/information here are mainly used for illustration/educational purposes only,
in the spirit of openness of data, spreading light, and empowering people with
knowledge. 
Thank You!

More Related Content

What's hot (20)

PPTX
Queues in C++
Vineeta Garg
 
PDF
Set methods in python
deepalishinkar1
 
PPTX
Two-dimensional array in java
Talha mahmood
 
PPTX
Full Python in 20 slides
rfojdar
 
PDF
Python programming : Control statements
Emertxe Information Technologies Pvt Ltd
 
PPTX
Operators and expressions in C++
Neeru Mittal
 
PPTX
python conditional statement.pptx
Dolchandra
 
PPTX
Regular expressions in Python
Sujith Kumar
 
PPTX
Python Data Structures and Algorithms.pptx
ShreyasLawand
 
PPT
08 c++ Operator Overloading.ppt
Tareq Hasan
 
PPTX
Python Functions
Mohammed Sikander
 
PDF
Arrays in Java
Naz Abdalla
 
PPTX
Stacks and Queue - Data Structures
Dr. Jasmine Beulah Gnanadurai
 
PDF
List , tuples, dictionaries and regular expressions in python
channa basava
 
PDF
Python Functions Tutorial | Working With Functions In Python | Python Trainin...
Edureka!
 
PPT
Queue in Data Structure
Muhazzab Chouhadry
 
PDF
Python Tutorial
AkramWaseem
 
PPTX
View, Store Procedure & Function and Trigger in MySQL - Thaipt
Framgia Vietnam
 
PPTX
Conditional and control statement
narmadhakin
 
Queues in C++
Vineeta Garg
 
Set methods in python
deepalishinkar1
 
Two-dimensional array in java
Talha mahmood
 
Full Python in 20 slides
rfojdar
 
Python programming : Control statements
Emertxe Information Technologies Pvt Ltd
 
Operators and expressions in C++
Neeru Mittal
 
python conditional statement.pptx
Dolchandra
 
Regular expressions in Python
Sujith Kumar
 
Python Data Structures and Algorithms.pptx
ShreyasLawand
 
08 c++ Operator Overloading.ppt
Tareq Hasan
 
Python Functions
Mohammed Sikander
 
Arrays in Java
Naz Abdalla
 
Stacks and Queue - Data Structures
Dr. Jasmine Beulah Gnanadurai
 
List , tuples, dictionaries and regular expressions in python
channa basava
 
Python Functions Tutorial | Working With Functions In Python | Python Trainin...
Edureka!
 
Queue in Data Structure
Muhazzab Chouhadry
 
Python Tutorial
AkramWaseem
 
View, Store Procedure & Function and Trigger in MySQL - Thaipt
Framgia Vietnam
 
Conditional and control statement
narmadhakin
 

Viewers also liked (12)

PDF
Python Programming - IX. On Randomness
Ranel Padon
 
PDF
Python Programming - VIII. Inheritance and Polymorphism
Ranel Padon
 
PDF
Python Programming - III. Controlling the Flow
Ranel Padon
 
PDF
Python Programming - V. Sequences (List and Tuples) and Dictionaries
Ranel Padon
 
PDF
Switchable Map APIs with Drupal
Ranel Padon
 
PDF
Python Programming - VII. Customizing Classes and Operator Overloading
Ranel Padon
 
PDF
Python Programming - XII. File Processing
Ranel Padon
 
PDF
Python Programming - XI. String Manipulation and Regular Expressions
Ranel Padon
 
PDF
Python Programming - II. The Basics
Ranel Padon
 
PDF
Python Programming - VI. Classes and Objects
Ranel Padon
 
PDF
Python Programming - XIII. GUI Programming
Ranel Padon
 
PDF
Python Programming - I. Introduction
Ranel Padon
 
Python Programming - IX. On Randomness
Ranel Padon
 
Python Programming - VIII. Inheritance and Polymorphism
Ranel Padon
 
Python Programming - III. Controlling the Flow
Ranel Padon
 
Python Programming - V. Sequences (List and Tuples) and Dictionaries
Ranel Padon
 
Switchable Map APIs with Drupal
Ranel Padon
 
Python Programming - VII. Customizing Classes and Operator Overloading
Ranel Padon
 
Python Programming - XII. File Processing
Ranel Padon
 
Python Programming - XI. String Manipulation and Regular Expressions
Ranel Padon
 
Python Programming - II. The Basics
Ranel Padon
 
Python Programming - VI. Classes and Objects
Ranel Padon
 
Python Programming - XIII. GUI Programming
Ranel Padon
 
Python Programming - I. Introduction
Ranel Padon
 
Ad

Similar to Python Programming - X. Exception Handling and Assertions (20)

PPTX
Exception handling with python class 12.pptx
PreeTVithule1
 
PDF
lecs101.pdfgggggggggggggggggggddddddddddddb
MrProfEsOr1
 
DOCX
Exception handlingpdf
gandra jeeshitha
 
PPTX
Exception handling.pptxnn h
sabarivelan111007
 
PPTX
Exception Handling in Python Programming.pptx
vinayagrawal71
 
PPT
Exception
Navaneethan Naveen
 
PPT
33aa27cae9c84fd12762a4ecdc288df822623524-1705207147822.ppt
svijaycdac
 
PPT
Exception Handling on 22nd March 2022.ppt
Raja Ram Dutta
 
PPTX
Python Exception Handling (Python Course)
IGustiNyomanAntonSur
 
PPTX
Exception Handling in python programming.pptx
shririshsri
 
PPTX
EXCEPTIONS-PYTHON.pptx RUNTIME ERRORS HANDLING
NagarathnaRajur2
 
PDF
Unit 4-Exception Handling in Python.pdf
Harsha Patil
 
PPTX
Python Exception Handling
Megha V
 
PPTX
Exception handling in python
Intellipaat
 
PPTX
Exception Handling.pptx
Pavan326406
 
PPTX
Python Exceptions Powerpoint Presentation
mitchellblack733
 
PPTX
Error and exception in python
junnubabu
 
PPTX
Errorhandlingbyvipulkendroyavidyalayacrpfmudkhed.pptx
xaybhagfsus
 
PPT
Py-Slides-9.ppt
wulanpermatasari27
 
Exception handling with python class 12.pptx
PreeTVithule1
 
lecs101.pdfgggggggggggggggggggddddddddddddb
MrProfEsOr1
 
Exception handlingpdf
gandra jeeshitha
 
Exception handling.pptxnn h
sabarivelan111007
 
Exception Handling in Python Programming.pptx
vinayagrawal71
 
33aa27cae9c84fd12762a4ecdc288df822623524-1705207147822.ppt
svijaycdac
 
Exception Handling on 22nd March 2022.ppt
Raja Ram Dutta
 
Python Exception Handling (Python Course)
IGustiNyomanAntonSur
 
Exception Handling in python programming.pptx
shririshsri
 
EXCEPTIONS-PYTHON.pptx RUNTIME ERRORS HANDLING
NagarathnaRajur2
 
Unit 4-Exception Handling in Python.pdf
Harsha Patil
 
Python Exception Handling
Megha V
 
Exception handling in python
Intellipaat
 
Exception Handling.pptx
Pavan326406
 
Python Exceptions Powerpoint Presentation
mitchellblack733
 
Error and exception in python
junnubabu
 
Errorhandlingbyvipulkendroyavidyalayacrpfmudkhed.pptx
xaybhagfsus
 
Py-Slides-9.ppt
wulanpermatasari27
 
Ad

More from Ranel Padon (9)

PDF
The Synergy of Drupal Hooks/APIs (Custom Module Development with ChartJS)
Ranel Padon
 
PDF
CKEditor Widgets with Drupal
Ranel Padon
 
PDF
Views Unlimited: Unleashing the Power of Drupal's Views Module
Ranel Padon
 
PDF
Batch Scripting with Drupal (Featuring the EntityFieldQuery API)
Ranel Padon
 
PDF
PyCon PH 2014 - GeoComputation
Ranel Padon
 
PDF
Power and Elegance - Leaflet + jQuery
Ranel Padon
 
PDF
Python Programming - IV. Program Components (Functions, Classes, Modules, Pac...
Ranel Padon
 
PDF
Of Nodes and Maps (Web Mapping with Drupal - Part II)
Ranel Padon
 
PDF
Web Mapping with Drupal
Ranel Padon
 
The Synergy of Drupal Hooks/APIs (Custom Module Development with ChartJS)
Ranel Padon
 
CKEditor Widgets with Drupal
Ranel Padon
 
Views Unlimited: Unleashing the Power of Drupal's Views Module
Ranel Padon
 
Batch Scripting with Drupal (Featuring the EntityFieldQuery API)
Ranel Padon
 
PyCon PH 2014 - GeoComputation
Ranel Padon
 
Power and Elegance - Leaflet + jQuery
Ranel Padon
 
Python Programming - IV. Program Components (Functions, Classes, Modules, Pac...
Ranel Padon
 
Of Nodes and Maps (Web Mapping with Drupal - Part II)
Ranel Padon
 
Web Mapping with Drupal
Ranel Padon
 

Recently uploaded (20)

PDF
Darley - FIRST Copenhagen Lightning Talk (2025-06-26) Epochalypse 2038 - Time...
treyka
 
PDF
5 Things to Consider When Deploying AI in Your Enterprise
Safe Software
 
PPTX
Smarter Governance with AI: What Every Board Needs to Know
OnBoard
 
PDF
Kubernetes - Architecture & Components.pdf
geethak285
 
PDF
Simplify Your FME Flow Setup: Fault-Tolerant Deployment Made Easy with Packer...
Safe Software
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
How to Comply With Saudi Arabia’s National Cybersecurity Regulations.pdf
Bluechip Advanced Technologies
 
PDF
Bridging CAD, IBM TRIRIGA & GIS with FME: The Portland Public Schools Case
Safe Software
 
PDF
Enhancing Environmental Monitoring with Real-Time Data Integration: Leveragin...
Safe Software
 
PPTX
01_Approach Cyber- DORA Incident Management.pptx
FinTech Belgium
 
PPTX
MARTSIA: A Tool for Confidential Data Exchange via Public Blockchain - Pitch ...
Michele Kryston
 
PDF
Pipeline Industry IoT - Real Time Data Monitoring
Safe Software
 
PDF
Understanding The True Cost of DynamoDB Webinar
ScyllaDB
 
PDF
Unlocking FME Flow’s Potential: Architecture Design for Modern Enterprises
Safe Software
 
PDF
FME as an Orchestration Tool with Principles From Data Gravity
Safe Software
 
PDF
Java 25 and Beyond - A Roadmap of Innovations
Ana-Maria Mihalceanu
 
PDF
Optimizing the trajectory of a wheel loader working in short loading cycles
Reno Filla
 
PDF
Automating the Geo-Referencing of Historic Aerial Photography in Flanders
Safe Software
 
PDF
Dev Dives: Accelerating agentic automation with Autopilot for Everyone
UiPathCommunity
 
PDF
Understanding AI Optimization AIO, LLMO, and GEO
CoDigital
 
Darley - FIRST Copenhagen Lightning Talk (2025-06-26) Epochalypse 2038 - Time...
treyka
 
5 Things to Consider When Deploying AI in Your Enterprise
Safe Software
 
Smarter Governance with AI: What Every Board Needs to Know
OnBoard
 
Kubernetes - Architecture & Components.pdf
geethak285
 
Simplify Your FME Flow Setup: Fault-Tolerant Deployment Made Easy with Packer...
Safe Software
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
How to Comply With Saudi Arabia’s National Cybersecurity Regulations.pdf
Bluechip Advanced Technologies
 
Bridging CAD, IBM TRIRIGA & GIS with FME: The Portland Public Schools Case
Safe Software
 
Enhancing Environmental Monitoring with Real-Time Data Integration: Leveragin...
Safe Software
 
01_Approach Cyber- DORA Incident Management.pptx
FinTech Belgium
 
MARTSIA: A Tool for Confidential Data Exchange via Public Blockchain - Pitch ...
Michele Kryston
 
Pipeline Industry IoT - Real Time Data Monitoring
Safe Software
 
Understanding The True Cost of DynamoDB Webinar
ScyllaDB
 
Unlocking FME Flow’s Potential: Architecture Design for Modern Enterprises
Safe Software
 
FME as an Orchestration Tool with Principles From Data Gravity
Safe Software
 
Java 25 and Beyond - A Roadmap of Innovations
Ana-Maria Mihalceanu
 
Optimizing the trajectory of a wheel loader working in short loading cycles
Reno Filla
 
Automating the Geo-Referencing of Historic Aerial Photography in Flanders
Safe Software
 
Dev Dives: Accelerating agentic automation with Autopilot for Everyone
UiPathCommunity
 
Understanding AI Optimization AIO, LLMO, and GEO
CoDigital
 

Python Programming - X. Exception Handling and Assertions