Output :-
8.881784197e-16
I want the same output in decimal form
Tried
def sqrt(value):
num = 1
while (value):
num = num * 2
value = value -1
return num
num = 1 / float (square)
print float(num)
Note: square value changing from 1 to 100 so expected output is to get the answer in full decimal form but it's coming in exponential form