math module

Rajarshi Guha rajarshi at presidency.com
Thu Jan 10 10:40:52 EST 2002


On Thu, 10 Jan 2002 11:00:01 +0100 (CET), <gombosk at vas.birosag.hu> wrote:
> 
> I have a problem with math module:
> 
> I import math module, because to call exp(x) or sqrt(x) does not work.
> 
> Do I need anything else to do?
> 
>>>> import math
>>>> exp(10)

You need: math.exp(10)
    
-- 



More information about the Python-list mailing list