ID EN
Math

exp

Python 3.11

Return e raised to the power x, where e = 2.718281… is the base of natural logarithms. This is usually more accurate than math.e ** x or pow(math.e, x).

Syntax

PYTHON
math.exp(x)