how to import math in python
import math
                                
                            log in python
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
                                
                            Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us