हिंदी

How is built-in function pow() function different from function math.pow() ? Explain with an example. - Computer Science (Python)

Advertisements
Advertisements

प्रश्न

How is built-in function pow() function different from function math.pow() ? Explain with an example.

संक्षेप में उत्तर

उत्तर

There are two main differences between built-in pow() function and math.pow() functions.

  • The built-in pow(x,y [,z]) function has an optional third parameter as modulo to compute x raised to the power of y and optionally do a modulo (% z) on the result. It is the same as the mathematical operation: (x ^ y) % z. Whereas, math.pow() function does not have modulo functionality.
  • In math.pow(x,y) both 'x' and 'y' are first converted into 'float' data type and then the power is calculated. Therefore, it always returns a value of the 'float' data type. This does not happen in the case of the built-in pow function, however, if the result is a float data type, the output will be float else it will return an integer data type.

Example:

import math
print()
#it will return 25.0 i.e float
print(math.pow(5,2))
print()
#it will return 25 i.e int
print(pow(5,2))
shaalaa.com
Built-in Functions
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 7: Functions - Exercise [पृष्ठ १७०]

APPEARS IN

एनसीईआरटी Computer Science [English] Class 11
अध्याय 7 Functions
Exercise | Q 4. | पृष्ठ १७०
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×