Python Math ln
import math
import numpy as np
math.log(x) #returns the natural log of x
np.log(x) #same thing
Difficult Dragonfly
import math
import numpy as np
math.log(x) #returns the natural log of x
np.log(x) #same thing