मराठी

You have learnt how to use math module in Class XI. Write a code where you use the wrong number of arguments for a method (say sqrt() or pow()). Use the exception handling process to catch - Computer Science (Python)

Advertisements
Advertisements

प्रश्न

You have learnt how to use math module in Class XI. Write a code where you use the wrong number of arguments for a method (say sqrt() or pow()). Use the exception handling process to catch the ValueError exception.

टीपा लिहा

उत्तर

Code to show the wrong number of arguments with exception handling.

import math
 try:
     print(math.sqrt(25,6))
 except TypeError:
     print("Wrong number of arguments used in sqrt() ")
 finally:
     print("Okay, Correct it")

Output:
Wrong number of arguments used in sqrt()
Okay, Correct it
shaalaa.com
Handling Exceptions
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 1: Exception Handling in Python - Exercise [पृष्ठ १८]

APPEARS IN

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

Englishहिंदीमराठी


      Forgot password?
Use app×