मराठी

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

Advertisements
Advertisements

प्रश्न

Explain catching exceptions using try and except block.

थोडक्यात उत्तर

उत्तर

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
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 1: Exception Handling in Python - Exercise [पृष्ठ १७]

APPEARS IN

एनसीईआरटी Computer Science [English] Class 12
पाठ 1 Exception Handling in Python
Exercise | Q 6. | पृष्ठ १७
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×