Advertisements
Advertisements
प्रश्न
Use assert statement in Question No. 3 to test the division expression in the program.
उत्तर
An assert statement in Python is used to test an expression in the program code. If the result after testing comes false, then the exception is raised. This statement is generally used in the beginning of the function or after a function call to check for valid input.
The syntax for assert statement is assert Expression[,arguments].
On encountering an assert statement, Python evaluates the expression given immediately after the assert keyword. If this expression is false, an AssertionError exception is raised which can be handled like any other exception.
n = int(input("Enter Number 1 :"))
m = int(input("Enter Number 2 : "))
assert (m == 0), "Oops , Zero Division Error ...."
print("Quotient : ", n / m)
Output - 1
Enter Number 1 :10
Enter Number 2 : 2
Traceback (most recent call last):
File “D:/PythonProg/ExceptionHandling/DivideByZero.py”, line 4, in
assert (m == 0), “Opps, …. ZeroDivisionError”
AssertionError: Opps, …. ZeroDivisionError
Output - 2
Enter Number 1 :10
Enter Number 2 : 0
Traceback (most recent call last):
File “D:/PythonProg/ExceptionHandling/DivideByZero.py”, line 5, in
print(“Quotient : “, n / m)
ZeroDivisionError: division by zero
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:
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).