Advertisements
Advertisements
प्रश्न
Consider the code given below and fill in the blanks.
print (" Learning Exceptions…")
try:
num1 = int(input ("Enter the first number")
num2 = int(input("Enter the second number"))
quotient=(num1/num2)
print ("Both the numbers entered were correct")
except ________: # to enter only integers
print (" Please enter only numbers")
except __________: # Denominator should not be zero
print(" Number 2 should not be zero")
else:
print(" Great .. you are a good programmer")
___________________ : # to be executed at the end
print(" JOB OVER… GO GET SOME REST")
रिक्त स्थान भरें
टिप्पणी लिखिए
उत्तर
print (" Learning Exceptions…")
try:
num1= int(input ("Enter the first number")
num2= int(input("Enter the second number"))
quotient=(num1/num2)
print ("Both the numbers entered were correct")
except ValueError: # to enter only integers
print (" Please enter only numbers")
except ZeroDivisionError: # Denominator should not be zero
print(" Number 2 should not be zero")
else:
print(" Great .. you are a good programmer")
finally : # to be executed at the end
print(" JOB OVER… GO GET SOME REST")
shaalaa.com
Exceptions
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?