Skip to content
Snippets Groups Projects
Commit 098d7b16 authored by giovaniagst's avatar giovaniagst
Browse files

add logarithm feature

parent 43974223
1 merge request!11add logarithm feature
# make logarithm function
import math
def log (x,y):
z = math.log(x,y)
return z
print(log(4,2))
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment