>>> import math
>>> math.log(10, 1000)
0.33333333333333337
import math
#E.g log_2(8)
result = math.log(8,2)
//Logarithm Functions
print(math.log(10))
print(math.log(10, 10))
def log(x,base):
result = ln(x)/ln(base)
return result
def ln(x):
n = 100000.0
return n * ((x ** (1/n)) - 1)
print(log(2,4))
#code by fawlid