How should I compute log to the base two in python. Eg. I have this equation where I am using log base 2
import math e = -(t/T)* math.log((t/T)[, 2])
Try this ,
import math print(math.log(8,2)) # math.log(number,base)