lucidparadox wrote: > I'm currently new to Python and I haven't been able to find the > operator/math function to find the square root or even the x root of a > number. Without ever having used it, I would guess it's the sqrt function in the math module. (Possibly also of interest: the pow function in that same module) TJG