Elliot Temple wrote:
> from math import *
> log10(15625)

It's always a good idea, especially when answering a beginner's 
question, to add the caution that this form ("from xxx import *") has 
certain dangers** associated with it, and is widely considered poor 
style, and should really only rarely be used. (The math module is 
probably one of the few places where some people make an exception, 
however, but it's still not a good habit to get into.)

-Peter
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to