Articles → Python → math.pow function in pythonmath.pow function in pythonIn this article, we will discuss math.pow function in pythonPurpose 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 Click to EnlargePosted 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