हिंदी

What is the use of a raise statement? Write a code to accept two numbers and display the quotient. Appropriate exception should be raised if the user enters the second number (denominator) - Computer Science (Python)

Advertisements
Advertisements

प्रश्न

What is the use of a raise statement? Write a code to accept two numbers and display the quotient. Appropriate exception should be raised if the user enters the second number (denominator) as zero (0).

टिप्पणी लिखिए

उत्तर

The raise statement can be used to throw an exception.

The syntax of raise statement is: raise exception-name[(optional argument)]

The argument is generally a string that is displayed when the exception is raised.

code to accept two numbers and display the quotient.

n = int(input("Enter Number 1 :"))
 m = int(input("Enter Number 2 :"))
 if m == 0:
     raise ZeroDivisionError
 else:
     print("Quotient : ", n / m)
shaalaa.com
Raising Exceptions
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 1: Exception Handling in Python - Exercise [पृष्ठ १७]

APPEARS IN

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

Englishहिंदीमराठी


      Forgot password?
Use app×