English

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")) - Computer Science (Python)

Advertisements
Advertisements

Question

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")
Fill in the Blanks
Short Note

Solution

 

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
  Is there an error in this question or solution?
Chapter 1: Exception Handling in Python - Exercise [Page 17]

APPEARS IN

NCERT Computer Science [English] Class 12
Chapter 1 Exception Handling in Python
Exercise | Q 7. | Page 17
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×