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
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?