Articles → Python → Math.Log Function In PythonMath.Log Function In PythonIn this article, we will discuss the Math.log function in Python.Purpose The math.log function is used to calculate the natural algorithm (Base e).Example import math print ("Natural logarithm of 14 is : ", end="") print (math.log(14))Output Posted By - Karan Gupta Posted On - Friday, April 19, 2019 Query/Feedback Your Email Id** Subject* Query/Feedback Characters remaining 250**
import math print ("Natural logarithm of 14 is : ", end="") print (math.log(14))
Query/Feedback