About Lesson
exp():-
The exp() function returns the exponential number E raised to the power of a.
Example:-
import math print(math.exp(5)) print(math.exp(5.0)) print(math.exp(2.23))
|
output 148.4131591025766 148.4131591025766 9.299866079483586 |