Where did the math module go?

Where did the math module go? I wrote a nice pretty little script and then when I ran it there is apparently no math module. Was it removed in 2.36 or something? How do I get it back?

Good question

each time I run a script the console show a no math module error
Aparently Python 2.4 doesn’t have a math module???
Yeah, they’re right! Me too I hate maths

You have to import it.

from math import *

Include that around the top of your python file and the math functions should work.

Jason Lin