Write a program to print logrithmic values of any number
Topic: Write a program to print logrithmic values of any number
Solution
import math x = 100 base = 5 print(math.log(x,base))
List all Python Programs
Solution
import math x = 100 base = 5 print(math.log(x,base))