how to perform square root without using math module??
Posted
by kaki
on Stack Overflow
See other posts from Stack Overflow
or by kaki
Published on 2010-06-15T16:19:01Z
Indexed on
2010/06/15
16:22 UTC
Read the original article
Hit count: 212
python
i want to find the square root of a number without using the math module,as i need to call the function some 20k times and dont want to slow down the execution by linking to the math module each time the function is called
is there any faster and easier way for finding square root??
© Stack Overflow or respective owner