Beginner question: Logs?

Terry Reedy tjreedy at udel.edu
Thu Jun 2 13:27:43 EDT 2005


> import math
> math.log10(15625)

To find out the names of function in the math module without checking the 
docs, do

>>> dir(math) #same for any other module

To get more info, do

>>> help(math) # same for any other module with a doc string

Terry J. Reedy 






More information about the Python-list mailing list