ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
1
Python
RTS tech
1
Exception Handling
RTS tech
Exception
ï‚— An abnormal situation that is occurred in a program.
RTS tech
Exception Hierarchy
RTS tech
BaseException
Exception
RuntimError
ImportError ArithmeticError …
ZeroDivisionError
NoImplementationError
ModuleNotFoundError
…
…
…
Exception handling
Exception Handling
Exception Raised.
RTS tech
Exception Handling
ï‚— Exception causes abnormal termination of the program.
ï‚— Python provides exception handling mechanism.
ï‚— try-except-finally-else block is used to handle
the exception in python.
ï‚— Exception raised:
ï‚— By system
ï‚— By programmer using raise keyword
RTS tech
Exceptional situation
ï‚— a=2
ï‚— print("a=",a,"b=",b)
ï‚— Output:
ï‚— print("a=",a,"b=",b)
ï‚— NameError: name 'b' is not defined
RTS tech
Exception Class Exception Message
Handle exception
ï‚— a=2
ï‚— try:
ï‚— print("a=",a,"b=",b)
ï‚— except NameError:
ï‚— print("check you variable Declration")
ï‚—
ï‚— Exception Handling
RTS tech
Exception
Raised
How to Handle Exception
ï‚— try-except-finally-else block is used to handle
the exception.
ï‚— try block raised an exception which is later handled by
except block.
ï‚— except block is used to provide alternative flow.
ï‚— finally block is used to clean the resources like file, DB
etc.
ï‚— else block executed when there is no exception in the
program.
RTS tech
How to get exception Message
ï‚— a=2
ï‚— try:
ï‚— print("a=",a,"b=",b)
ï‚— except NameError as e:
 print(“Error:",e)
RTS tech
Handle Multiple exception
ï‚— try:
ï‚— a=int(input("Enter a Dividend n"))
ï‚— b=int(input("Enter the divisorn"))
ï‚— result=a/b
ï‚— print("Division is {}".format(result))
ï‚— except ValueError:
ï‚— print("Enter Integer Number")
ï‚— except ZeroDivisionError:
ï‚— print("Divisor can not 0")
RTS tech
Parent Exception block
ï‚— try:
ï‚— a=int(input("Enter a Dividend n"))
ï‚— b=int(input("Enter the divisorn"))
ï‚— result=a/b
ï‚— print("Division is {}".format(result))
ï‚— except Exception as e:
ï‚— print("Error ",e)
ï‚— We can use parent Exception class to handle the multiple exception
in down hierarchy.
RTS tech
try-except-else-finally
ï‚— try:
ï‚— a=int(input("Enter a Dividend n"))
ï‚— b=int(input("Enter the divisorn"))
ï‚— result=a/b
ï‚— except ZeroDivisionError:
ï‚— print("Divisor can not 0")
ï‚— else:
ï‚— print("Division is {}".format(result))
ï‚— finally:
ï‚— print("I used for cleanup Task")
ï‚— print("I always executed either exception
is raised or not in try block")
RTS tech
Built in Exception
ï‚— AttributeError
ï‚— Fail to reference an assignment to a variable.
ï‚— EOFError
ï‚— Reading beyond the file length
ï‚— ImportError
ï‚— not able to import function from module
ï‚— ModuleNotFoundError
ï‚— Module name is not available.
ï‚— IndexError
ï‚— Beyond the index we are trying to access the element from array,
list, string etc.
RTS tech
Built in exception(cont.)
ï‚— keyError
ï‚— Mapping key is not available.
ï‚— NameError
ï‚— Attribute is not defined.
ï‚— NoImplementationError
ï‚— When abstract method is not get implemented in child class
ï‚— ValueError
ï‚— When wrong type of value is going to be assigned
ï‚— ZeroDivisionError
ï‚— Trying to divide a number by zero
RTS tech
User Define Exception
ï‚— We can create user define exception using
ï‚— raise keyword
ï‚— Or by extending Exception base class to create our
own exception Class.
RTS tech
raise custom Exception
ï‚— try:
ï‚— age=int(input("Enter Your age: "))
ï‚— if(age<18):
ï‚— raise Exception("You don't have rights to
cast vote.")
ï‚— else:
ï‚— print("You have rights to cast vote")
ï‚— except Exception as e:
ï‚— print("Error ",e)
RTS tech
Custom Exception Class
ï‚— class InavalidVoterException(Exception):
ï‚— def __init__(self):
ï‚— super().__init__("Invalid Voter")
ï‚—
RTS tech
Test Custom Exception
ï‚— from customException import InavalidVoterException
ï‚— try:
ï‚— age=int(input("Enter Your age: "))
ï‚— if(age<18):
ï‚— raise InavalidVoterException()
ï‚— else:
ï‚— print("You have rights to cast vote")
ï‚— except InavalidVoterException as e:
ï‚— print("Error ",e)
RTS tech
Disclaimer
ï‚— This is a educational Presentation to make
programming easier.
ï‚— We have used images of different URLs to make
presentation better.
ï‚— We respect the work of the owners of the URLs.
RTS tech
Thank You!
RTS Tech.
:rtstech30@gmail.com
:+91 8818887087

More Related Content

What's hot (20)

Python Exception Handling
Python Exception HandlingPython Exception Handling
Python Exception Handling
Megha V
Ìý
Types of exceptions
Types of exceptionsTypes of exceptions
Types of exceptions
myrajendra
Ìý
Python Generators
Python GeneratorsPython Generators
Python Generators
Akshar Raaj
Ìý
Python GUI
Python GUIPython GUI
Python GUI
LusciousLarryDas
Ìý
Exceptions handling notes in JAVA
Exceptions handling notes in JAVAExceptions handling notes in JAVA
Exceptions handling notes in JAVA
Sunil Kumar Gunasekaran
Ìý
Java exception handling ppt
Java exception handling pptJava exception handling ppt
Java exception handling ppt
JavabynataraJ
Ìý
Tkinter_GUI_Programming_in_Python.pdf
Tkinter_GUI_Programming_in_Python.pdfTkinter_GUI_Programming_in_Python.pdf
Tkinter_GUI_Programming_in_Python.pdf
ArielManzano3
Ìý
Python decorators
Python decoratorsPython decorators
Python decorators
Alex Su
Ìý
How to download and install Python - lesson 2
How to download and install Python - lesson 2How to download and install Python - lesson 2
How to download and install Python - lesson 2
Shohel Rana
Ìý
PythonÌýData Types,numbers.pptx
PythonÌýData Types,numbers.pptxPythonÌýData Types,numbers.pptx
PythonÌýData Types,numbers.pptx
adityakumawat625
Ìý
Python Functions Tutorial | Working With Functions In Python | Python Trainin...
Python Functions Tutorial | Working With Functions In Python | Python Trainin...Python Functions Tutorial | Working With Functions In Python | Python Trainin...
Python Functions Tutorial | Working With Functions In Python | Python Trainin...
Edureka!
Ìý
Chapter 07 inheritance
Chapter 07 inheritanceChapter 07 inheritance
Chapter 07 inheritance
Praveen M Jigajinni
Ìý
Python collections
Python collectionsPython collections
Python collections
Manusha Dilan
Ìý
Fundamentals of Python Programming
Fundamentals of Python ProgrammingFundamentals of Python Programming
Fundamentals of Python Programming
Kamal Acharya
Ìý
Python OOPs
Python OOPsPython OOPs
Python OOPs
Binay Kumar Ray
Ìý
Python my sql database connection
Python my sql   database connectionPython my sql   database connection
Python my sql database connection
Learnbay Datascience
Ìý
Strings in Python
Strings in PythonStrings in Python
Strings in Python
Amisha Narsingani
Ìý
Python programming : Files
Python programming : FilesPython programming : Files
Python programming : Files
Emertxe Information Technologies Pvt Ltd
Ìý
Threads in python
Threads in pythonThreads in python
Threads in python
baabtra.com - No. 1 supplier of quality freshers
Ìý
Python functions
Python functionsPython functions
Python functions
Prof. Dr. K. Adisesha
Ìý
Python Exception Handling
Python Exception HandlingPython Exception Handling
Python Exception Handling
Megha V
Ìý
Types of exceptions
Types of exceptionsTypes of exceptions
Types of exceptions
myrajendra
Ìý
Python Generators
Python GeneratorsPython Generators
Python Generators
Akshar Raaj
Ìý
Java exception handling ppt
Java exception handling pptJava exception handling ppt
Java exception handling ppt
JavabynataraJ
Ìý
Tkinter_GUI_Programming_in_Python.pdf
Tkinter_GUI_Programming_in_Python.pdfTkinter_GUI_Programming_in_Python.pdf
Tkinter_GUI_Programming_in_Python.pdf
ArielManzano3
Ìý
Python decorators
Python decoratorsPython decorators
Python decorators
Alex Su
Ìý
How to download and install Python - lesson 2
How to download and install Python - lesson 2How to download and install Python - lesson 2
How to download and install Python - lesson 2
Shohel Rana
Ìý
PythonÌýData Types,numbers.pptx
PythonÌýData Types,numbers.pptxPythonÌýData Types,numbers.pptx
PythonÌýData Types,numbers.pptx
adityakumawat625
Ìý
Python Functions Tutorial | Working With Functions In Python | Python Trainin...
Python Functions Tutorial | Working With Functions In Python | Python Trainin...Python Functions Tutorial | Working With Functions In Python | Python Trainin...
Python Functions Tutorial | Working With Functions In Python | Python Trainin...
Edureka!
Ìý
Python collections
Python collectionsPython collections
Python collections
Manusha Dilan
Ìý
Fundamentals of Python Programming
Fundamentals of Python ProgrammingFundamentals of Python Programming
Fundamentals of Python Programming
Kamal Acharya
Ìý
Python my sql database connection
Python my sql   database connectionPython my sql   database connection
Python my sql database connection
Learnbay Datascience
Ìý

Similar to Python Exception Handling (20)

Python Unit II.pptx
Python Unit II.pptxPython Unit II.pptx
Python Unit II.pptx
sarthakgithub
Ìý
Exception Handling in python programming.pptx
Exception Handling in python programming.pptxException Handling in python programming.pptx
Exception Handling in python programming.pptx
shririshsri
Ìý
Java. exception-handling-in-java.pptx
Java.    exception-handling-in-java.pptxJava.    exception-handling-in-java.pptx
Java. exception-handling-in-java.pptx
kunalgaikwad1705
Ìý
exception-handlinggygyygggy-in-java.pptx
exception-handlinggygyygggy-in-java.pptxexception-handlinggygyygggy-in-java.pptx
exception-handlinggygyygggy-in-java.pptx
SulbhaBhivsane
Ìý
Nalinee java
Nalinee javaNalinee java
Nalinee java
Nalinee Choudhary
Ìý
Exception handling
Exception handlingException handling
Exception handling
Raja Sekhar
Ìý
Exception handling with python class 12.pptx
Exception handling with python class 12.pptxException handling with python class 12.pptx
Exception handling with python class 12.pptx
PreeTVithule1
Ìý
Exception handlingpdf
Exception handlingpdfException handlingpdf
Exception handlingpdf
gandra jeeshitha
Ìý
12. Exception Handling
12. Exception Handling 12. Exception Handling
12. Exception Handling
Intro C# Book
Ìý
C# Exceptions Handling
C# Exceptions Handling C# Exceptions Handling
C# Exceptions Handling
sharqiyem
Ìý
12 Exceptions handling
12 Exceptions handling12 Exceptions handling
12 Exceptions handling
maznabili
Ìý
Python Lecture 7
Python Lecture 7Python Lecture 7
Python Lecture 7
Inzamam Baig
Ìý
Python Programming Essentials - M21 - Exception Handling
Python Programming Essentials - M21 - Exception HandlingPython Programming Essentials - M21 - Exception Handling
Python Programming Essentials - M21 - Exception Handling
P3 InfoTech Solutions Pvt. Ltd.
Ìý
java exception.pptx
java exception.pptxjava exception.pptx
java exception.pptx
SukhpreetSingh519414
Ìý
Java căn bản - Chapter8
Java căn bản - Chapter8Java căn bản - Chapter8
Java căn bản - Chapter8
Vince Vo
Ìý
Chapter 8 - Exceptions and Assertions Edit summary
Chapter 8 - Exceptions and Assertions  Edit summaryChapter 8 - Exceptions and Assertions  Edit summary
Chapter 8 - Exceptions and Assertions Edit summary
Eduardo Bergavera
Ìý
Unit iii
Unit iiiUnit iii
Unit iii
snehaarao19
Ìý
Exception Handling notes in java exception
Exception Handling notes in java exceptionException Handling notes in java exception
Exception Handling notes in java exception
Ratnakar Mikkili
Ìý
Error and exception in python
Error and exception in pythonError and exception in python
Error and exception in python
junnubabu
Ìý
UNIT III (2).ppt
UNIT III (2).pptUNIT III (2).ppt
UNIT III (2).ppt
VGaneshKarthikeyan
Ìý
Python Unit II.pptx
Python Unit II.pptxPython Unit II.pptx
Python Unit II.pptx
sarthakgithub
Ìý
Exception Handling in python programming.pptx
Exception Handling in python programming.pptxException Handling in python programming.pptx
Exception Handling in python programming.pptx
shririshsri
Ìý
Java. exception-handling-in-java.pptx
Java.    exception-handling-in-java.pptxJava.    exception-handling-in-java.pptx
Java. exception-handling-in-java.pptx
kunalgaikwad1705
Ìý
exception-handlinggygyygggy-in-java.pptx
exception-handlinggygyygggy-in-java.pptxexception-handlinggygyygggy-in-java.pptx
exception-handlinggygyygggy-in-java.pptx
SulbhaBhivsane
Ìý
Exception handling
Exception handlingException handling
Exception handling
Raja Sekhar
Ìý
Exception handling with python class 12.pptx
Exception handling with python class 12.pptxException handling with python class 12.pptx
Exception handling with python class 12.pptx
PreeTVithule1
Ìý
Exception handlingpdf
Exception handlingpdfException handlingpdf
Exception handlingpdf
gandra jeeshitha
Ìý
12. Exception Handling
12. Exception Handling 12. Exception Handling
12. Exception Handling
Intro C# Book
Ìý
C# Exceptions Handling
C# Exceptions Handling C# Exceptions Handling
C# Exceptions Handling
sharqiyem
Ìý
12 Exceptions handling
12 Exceptions handling12 Exceptions handling
12 Exceptions handling
maznabili
Ìý
Python Lecture 7
Python Lecture 7Python Lecture 7
Python Lecture 7
Inzamam Baig
Ìý
Python Programming Essentials - M21 - Exception Handling
Python Programming Essentials - M21 - Exception HandlingPython Programming Essentials - M21 - Exception Handling
Python Programming Essentials - M21 - Exception Handling
P3 InfoTech Solutions Pvt. Ltd.
Ìý
Java căn bản - Chapter8
Java căn bản - Chapter8Java căn bản - Chapter8
Java căn bản - Chapter8
Vince Vo
Ìý
Chapter 8 - Exceptions and Assertions Edit summary
Chapter 8 - Exceptions and Assertions  Edit summaryChapter 8 - Exceptions and Assertions  Edit summary
Chapter 8 - Exceptions and Assertions Edit summary
Eduardo Bergavera
Ìý
Exception Handling notes in java exception
Exception Handling notes in java exceptionException Handling notes in java exception
Exception Handling notes in java exception
Ratnakar Mikkili
Ìý
Error and exception in python
Error and exception in pythonError and exception in python
Error and exception in python
junnubabu
Ìý

Recently uploaded (20)

Requirements Engineering for Secure Software
Requirements Engineering for Secure SoftwareRequirements Engineering for Secure Software
Requirements Engineering for Secure Software
Dr Sarika Jadhav
Ìý
Software security: Security a Software Issue
Software security: Security a Software IssueSoftware security: Security a Software Issue
Software security: Security a Software Issue
Dr Sarika Jadhav
Ìý
Disruption channel in business model innovation topic
Disruption channel in business model innovation topicDisruption channel in business model innovation topic
Disruption channel in business model innovation topic
anandraj930873
Ìý
CCNA_Product_OverviewCCNA_Productsa.pptx
CCNA_Product_OverviewCCNA_Productsa.pptxCCNA_Product_OverviewCCNA_Productsa.pptx
CCNA_Product_OverviewCCNA_Productsa.pptx
UdayakumarAllimuthu
Ìý
Artificial-Intelligence-in-Cybersecurity.pptx
Artificial-Intelligence-in-Cybersecurity.pptxArtificial-Intelligence-in-Cybersecurity.pptx
Artificial-Intelligence-in-Cybersecurity.pptx
Vigneshwarar3
Ìý
English presentation, tests and experiments.pptx
English presentation, tests and experiments.pptxEnglish presentation, tests and experiments.pptx
English presentation, tests and experiments.pptx
SamahEL2
Ìý
DBMS Nested & Sub Queries Set operations
DBMS Nested & Sub Queries Set operationsDBMS Nested & Sub Queries Set operations
DBMS Nested & Sub Queries Set operations
Sreedhar Chowdam
Ìý
UHV UNIT-5 IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON ...
UHV UNIT-5    IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON ...UHV UNIT-5    IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON ...
UHV UNIT-5 IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON ...
ariomthermal2031
Ìý
Lecture 16 - 17 - NonTraditional Machining Presentation.ppt
Lecture 16 - 17 - NonTraditional Machining Presentation.pptLecture 16 - 17 - NonTraditional Machining Presentation.ppt
Lecture 16 - 17 - NonTraditional Machining Presentation.ppt
INSTITUTE OF ENGINEERING /BKC
Ìý
FIRST Tech Challenge/Robotics: Scouting out the competition
FIRST Tech Challenge/Robotics: Scouting out the competitionFIRST Tech Challenge/Robotics: Scouting out the competition
FIRST Tech Challenge/Robotics: Scouting out the competition
FTC Team 23014
Ìý
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascioKtor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
infogdgmi
Ìý
Scalling Rails: The Journey to 200M Notifications
Scalling Rails: The Journey to 200M NotificationsScalling Rails: The Journey to 200M Notifications
Scalling Rails: The Journey to 200M Notifications
Gustavo Araujo
Ìý
Introduction to 3D Printing Technology.pptx
Introduction to 3D Printing Technology.pptxIntroduction to 3D Printing Technology.pptx
Introduction to 3D Printing Technology.pptx
pprakash21252
Ìý
271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ
271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ
271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ
QualityManager48
Ìý
Mastering Secure Login Mechanisms for React Apps.pdf
Mastering Secure Login Mechanisms for React Apps.pdfMastering Secure Login Mechanisms for React Apps.pdf
Mastering Secure Login Mechanisms for React Apps.pdf
Brion Mario
Ìý
Why the Engineering Model is Key to Successful Projects
Why the Engineering Model is Key to Successful ProjectsWhy the Engineering Model is Key to Successful Projects
Why the Engineering Model is Key to Successful Projects
Maadhu Creatives-Model Making Company
Ìý
NBA Criteria TIER I and TIER II Comparison
NBA Criteria TIER I and TIER II ComparisonNBA Criteria TIER I and TIER II Comparison
NBA Criteria TIER I and TIER II Comparison
Dr INBAMALAR T M
Ìý
Floating Offshore Wind in the Celtic Sea
Floating Offshore Wind in the Celtic SeaFloating Offshore Wind in the Celtic Sea
Floating Offshore Wind in the Celtic Sea
permagoveu
Ìý
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptxUHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
ariomthermal2031
Ìý
Protecting Secrets in Transparent Systems
Protecting Secrets in Transparent SystemsProtecting Secrets in Transparent Systems
Protecting Secrets in Transparent Systems
LucaBarbaro3
Ìý
Requirements Engineering for Secure Software
Requirements Engineering for Secure SoftwareRequirements Engineering for Secure Software
Requirements Engineering for Secure Software
Dr Sarika Jadhav
Ìý
Software security: Security a Software Issue
Software security: Security a Software IssueSoftware security: Security a Software Issue
Software security: Security a Software Issue
Dr Sarika Jadhav
Ìý
Disruption channel in business model innovation topic
Disruption channel in business model innovation topicDisruption channel in business model innovation topic
Disruption channel in business model innovation topic
anandraj930873
Ìý
CCNA_Product_OverviewCCNA_Productsa.pptx
CCNA_Product_OverviewCCNA_Productsa.pptxCCNA_Product_OverviewCCNA_Productsa.pptx
CCNA_Product_OverviewCCNA_Productsa.pptx
UdayakumarAllimuthu
Ìý
Artificial-Intelligence-in-Cybersecurity.pptx
Artificial-Intelligence-in-Cybersecurity.pptxArtificial-Intelligence-in-Cybersecurity.pptx
Artificial-Intelligence-in-Cybersecurity.pptx
Vigneshwarar3
Ìý
English presentation, tests and experiments.pptx
English presentation, tests and experiments.pptxEnglish presentation, tests and experiments.pptx
English presentation, tests and experiments.pptx
SamahEL2
Ìý
DBMS Nested & Sub Queries Set operations
DBMS Nested & Sub Queries Set operationsDBMS Nested & Sub Queries Set operations
DBMS Nested & Sub Queries Set operations
Sreedhar Chowdam
Ìý
UHV UNIT-5 IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON ...
UHV UNIT-5    IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON ...UHV UNIT-5    IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON ...
UHV UNIT-5 IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON ...
ariomthermal2031
Ìý
Lecture 16 - 17 - NonTraditional Machining Presentation.ppt
Lecture 16 - 17 - NonTraditional Machining Presentation.pptLecture 16 - 17 - NonTraditional Machining Presentation.ppt
Lecture 16 - 17 - NonTraditional Machining Presentation.ppt
INSTITUTE OF ENGINEERING /BKC
Ìý
FIRST Tech Challenge/Robotics: Scouting out the competition
FIRST Tech Challenge/Robotics: Scouting out the competitionFIRST Tech Challenge/Robotics: Scouting out the competition
FIRST Tech Challenge/Robotics: Scouting out the competition
FTC Team 23014
Ìý
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascioKtor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
infogdgmi
Ìý
Scalling Rails: The Journey to 200M Notifications
Scalling Rails: The Journey to 200M NotificationsScalling Rails: The Journey to 200M Notifications
Scalling Rails: The Journey to 200M Notifications
Gustavo Araujo
Ìý
Introduction to 3D Printing Technology.pptx
Introduction to 3D Printing Technology.pptxIntroduction to 3D Printing Technology.pptx
Introduction to 3D Printing Technology.pptx
pprakash21252
Ìý
271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ
271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ
271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ
QualityManager48
Ìý
Mastering Secure Login Mechanisms for React Apps.pdf
Mastering Secure Login Mechanisms for React Apps.pdfMastering Secure Login Mechanisms for React Apps.pdf
Mastering Secure Login Mechanisms for React Apps.pdf
Brion Mario
Ìý
NBA Criteria TIER I and TIER II Comparison
NBA Criteria TIER I and TIER II ComparisonNBA Criteria TIER I and TIER II Comparison
NBA Criteria TIER I and TIER II Comparison
Dr INBAMALAR T M
Ìý
Floating Offshore Wind in the Celtic Sea
Floating Offshore Wind in the Celtic SeaFloating Offshore Wind in the Celtic Sea
Floating Offshore Wind in the Celtic Sea
permagoveu
Ìý
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptxUHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
ariomthermal2031
Ìý
Protecting Secrets in Transparent Systems
Protecting Secrets in Transparent SystemsProtecting Secrets in Transparent Systems
Protecting Secrets in Transparent Systems
LucaBarbaro3
Ìý

Python Exception Handling

  • 3. Exception ï‚— An abnormal situation that is occurred in a program. RTS tech
  • 4. Exception Hierarchy RTS tech BaseException Exception RuntimError ImportError ArithmeticError … ZeroDivisionError NoImplementationError ModuleNotFoundError … … …
  • 6. Exception Handling ï‚— Exception causes abnormal termination of the program. ï‚— Python provides exception handling mechanism. ï‚— try-except-finally-else block is used to handle the exception in python. ï‚— Exception raised: ï‚— By system ï‚— By programmer using raise keyword RTS tech
  • 7. Exceptional situation ï‚— a=2 ï‚— print("a=",a,"b=",b) ï‚— Output: ï‚— print("a=",a,"b=",b) ï‚— NameError: name 'b' is not defined RTS tech Exception Class Exception Message
  • 8. Handle exception ï‚— a=2 ï‚— try: ï‚— print("a=",a,"b=",b) ï‚— except NameError: ï‚— print("check you variable Declration") ï‚— ï‚— Exception Handling RTS tech Exception Raised
  • 9. How to Handle Exception ï‚— try-except-finally-else block is used to handle the exception. ï‚— try block raised an exception which is later handled by except block. ï‚— except block is used to provide alternative flow. ï‚— finally block is used to clean the resources like file, DB etc. ï‚— else block executed when there is no exception in the program. RTS tech
  • 10. How to get exception Message ï‚— a=2 ï‚— try: ï‚— print("a=",a,"b=",b) ï‚— except NameError as e: ï‚— print(“Error:",e) RTS tech
  • 11. Handle Multiple exception ï‚— try: ï‚— a=int(input("Enter a Dividend n")) ï‚— b=int(input("Enter the divisorn")) ï‚— result=a/b ï‚— print("Division is {}".format(result)) ï‚— except ValueError: ï‚— print("Enter Integer Number") ï‚— except ZeroDivisionError: ï‚— print("Divisor can not 0") RTS tech
  • 12. Parent Exception block ï‚— try: ï‚— a=int(input("Enter a Dividend n")) ï‚— b=int(input("Enter the divisorn")) ï‚— result=a/b ï‚— print("Division is {}".format(result)) ï‚— except Exception as e: ï‚— print("Error ",e) ï‚— We can use parent Exception class to handle the multiple exception in down hierarchy. RTS tech
  • 13. try-except-else-finally ï‚— try: ï‚— a=int(input("Enter a Dividend n")) ï‚— b=int(input("Enter the divisorn")) ï‚— result=a/b ï‚— except ZeroDivisionError: ï‚— print("Divisor can not 0") ï‚— else: ï‚— print("Division is {}".format(result)) ï‚— finally: ï‚— print("I used for cleanup Task") ï‚— print("I always executed either exception is raised or not in try block") RTS tech
  • 14. Built in Exception ï‚— AttributeError ï‚— Fail to reference an assignment to a variable. ï‚— EOFError ï‚— Reading beyond the file length ï‚— ImportError ï‚— not able to import function from module ï‚— ModuleNotFoundError ï‚— Module name is not available. ï‚— IndexError ï‚— Beyond the index we are trying to access the element from array, list, string etc. RTS tech
  • 15. Built in exception(cont.) ï‚— keyError ï‚— Mapping key is not available. ï‚— NameError ï‚— Attribute is not defined. ï‚— NoImplementationError ï‚— When abstract method is not get implemented in child class ï‚— ValueError ï‚— When wrong type of value is going to be assigned ï‚— ZeroDivisionError ï‚— Trying to divide a number by zero RTS tech
  • 16. User Define Exception ï‚— We can create user define exception using ï‚— raise keyword ï‚— Or by extending Exception base class to create our own exception Class. RTS tech
  • 17. raise custom Exception ï‚— try: ï‚— age=int(input("Enter Your age: ")) ï‚— if(age<18): ï‚— raise Exception("You don't have rights to cast vote.") ï‚— else: ï‚— print("You have rights to cast vote") ï‚— except Exception as e: ï‚— print("Error ",e) RTS tech
  • 18. Custom Exception Class ï‚— class InavalidVoterException(Exception): ï‚— def __init__(self): ï‚— super().__init__("Invalid Voter") ï‚— RTS tech
  • 19. Test Custom Exception ï‚— from customException import InavalidVoterException ï‚— try: ï‚— age=int(input("Enter Your age: ")) ï‚— if(age<18): ï‚— raise InavalidVoterException() ï‚— else: ï‚— print("You have rights to cast vote") ï‚— except InavalidVoterException as e: ï‚— print("Error ",e) RTS tech
  • 20. Disclaimer ï‚— This is a educational Presentation to make programming easier. ï‚— We have used images of different URLs to make presentation better. ï‚— We respect the work of the owners of the URLs. RTS tech