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)
APPEARS IN
संबंधित प्रश्न
Throwing an exception in Python is known as:
One can deal with an exception when it is raised by the help of:
On giving the "raise syntaxError("HI")" command on Python shell, no exception is raised because the right way to write is:
Use assert statement in Question No. 3 to test the division expression in the program.