8 lines
107 B
Python
8 lines
107 B
Python
|
def sqrt(x):
|
||
|
a = 2
|
||
|
while abs((a - (x / a))) > 1:
|
||
|
a = (a + (x / a)) / 2
|
||
|
return a // 1
|
||
|
|
||
|
print(sqrt(81))
|