Important Notice:

Course Content
The Calendar Module
Library Function/Predefined Functions
0/4
Sys Module
Library Function/Predefined Functions
0/2
OS Module
Library Function/Predefined Functions
0/2
Functions in Python (Chapter-10) M3-R5
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

error: Content is protected !!