how do I use python to find the natural log of a user's input?
import math
def log_e(power_of_e):
math.log = power_of_e
exponent = math.log
return exponent
my_number = float(input('Enter a number and I will give you it\'s natural logarithm:'))
print (log_e(my_number))