n=int (input ('enter value'))
def newtonsqrt (n):
approx =0.5 *n
better =0.05*C(approx+ n/ approx)
while (better ! =approx)
։
approx = better
better = 0.5 * (appox + n/ approx)
return approx
Print ( 'The Square root is " newtonsqrt
(4.9))
Answers
Answered by
0
Answer:
There is an error
Explanation:
1. print should be small error
2. inside the print statement quotation should be double quotes "The square root is "
Similar questions