English

Explain catching exceptions using try and except block. - Computer Science (Python)

Advertisements
Advertisements

Question

Explain catching exceptions using try and except block.

Answer in Brief

Solution

An exception is said to be caught when a code that is designed to handle a particular exception is executed. Exceptions, if any, are caught in the try block and handled in the except block.

While writing or debugging a program, a user might doubt an exception to occur in a particular part of the code. Such suspicious lines of codes are put inside a try block. Every try block is followed by an except block. The appropriate code to handle each of the possible exceptions (in the code inside the try block) are written inside the except clause.

While executing the program, if an exception is encountered, further execution of the code inside the try block is stopped and the control is transferred to the except block.

 print ("Practicing for try block")
 try:
   numerator=50
   denom=int(input("Enter the denominator"))
   quotient=(numerator/denom)
   print ("Division performed successfully")
 except ZeroDivisionError:
   print ("Denominator as ZERO…. not allowed")
 print(“OUTSIDE try..except block”)
shaalaa.com
Handling Exceptions
  Is there an error in this question or solution?
Chapter 1: Exception Handling in Python - Exercise [Page 17]

APPEARS IN

NCERT Computer Science [English] Class 12
Chapter 1 Exception Handling in Python
Exercise | Q 6. | Page 17
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×