Articles → Python → Math.Pow Function In PythonMath.Pow Function In PythonIn this article, we will discuss the math.pow function in Python.Purpose The pow(x,y) function read as x raise to the power of y means multiple x, y number of times.Example import math # 3 raise to the power 2 i.e. multiple 3, 2 times. print("Math.Pow -" , math.pow(3,2))Output Posted By - Karan Gupta Posted On - Friday, April 19, 2019 Query/Feedback Your Email Id** Subject* Query/Feedback Characters remaining 250**
import math # 3 raise to the power 2 i.e. multiple 3, 2 times. print("Math.Pow -" , math.pow(3,2))
Query/Feedback