Python pow() FunctionPython pow() function is used to compute the powers of a number. It returns x to the power of y modulus z if a third argument(z) is present, i.e. (x, y) % z. SignatureParametersx: It is a number, a base y: It is a number, an exponent. z (optional): It is a number and the modulus. ReturnIt returns x to the power of y modulus z, if a third argument(z) is given, i.e. (x, y) % z. Python pow() Function Example 1:The below example shows the working of pow(). Output: 16 16 0.0625 0.0625 Explanation: In the above example, we have taken different values of the argument (x,y) and returns x to the power of y. Python pow() Function Example 2:The below example shows pow() with three arguments (x, y, z) Output: 1 Next TopicPython Built in Functions |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India