Easy Tutorial
❮ Python Func Number Fabs Python Find Url String ❯

Python3 exp() Function

Python3 Numbers


Description

The exp() method returns the exponential value of x, e^x.


Syntax

Here is the syntax for the exp() method:

import math

math.exp(x)

Note: The exp() method cannot be accessed directly; it requires importing the math module and calling this method via the static object.


Parameters


Return Value


Example

Below are examples demonstrating the use of the exp() method:

#!/usr/bin/python3
import math   # Import the math module

print("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 examples 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

Python3 Numbers

❮ Python Func Number Fabs Python Find Url String ❯