square root | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

square root

how can we find the square root of a number in python without using the math library ?

16th Nov 2021, 2:38 AM
Lizenlord
1 Answer
+ 5
print(number**(1/2))
16th Nov 2021, 2:42 AM
A͢J
A͢J - avatar