> 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 -- http://mail.python.org/mailman/listinfo/python-list