Articles → Python → Math.Exp Function In PythonMath.Exp Function In PythonIn this article, we will discuss the math.exp function in Python.Purpose The math.exp in Python is used to calculate the exponential of a number.Example import math print("Exponential of number 5 is:", math.exp(5))Output Posted By - Karan Gupta Posted On - Monday, April 29, 2019 Query/Feedback Your Email Id Subject Query/Feedback Characters remaining 250
import math print("Exponential of number 5 is:", math.exp(5))
Query/Feedback