YouTip LogoYouTip

Python3 Func Number Exp

# Python3.x Python3 exp() Function [![Image 3: Python3 Numbers](#) Python3 Numbers](#) * * * ## Description The exp() method returns the exponential of x: e x. * * * ## Syntax Here is the syntax for the exp() method: import math math.exp( x ) **Note:** exp() cannot be accessed directly. You need to import the math module and call the method through a static object. * * * ## Parameters * x -- A numeric expression. * * * ## Return Value Returns the exponential of x: e x. * * * ## Example The following example demonstrates the use of the exp() method: #!/usr/bin/python3import math # Import the math moduleprint ("math.exp(-45.17) : ", math.exp(-45.17))print ("math.exp(100.12) : ", math.exp(100.12))print ("math.exp(100.72) : ", math.exp(100.72))print ("math.exp(math.pi) : ", math.exp(math.pi)) The output of the above example is: math.exp(-45.17) : 2.4150062132629406e-20 math.exp(100.12) : 3.0308436140742566e+43 math.exp(100.72) : 5.522557130248187e+43 math.exp(math.pi) : 23.140692632779267 [![Image 4: Python3 Numbers](#) Python3 Numbers](#)
← Python3 Func Number FloorPython3 Func Number Exp β†’