First time here? Checkout the FAQ!
x
menu search
brightness_auto
more_vert

Write a Python Program to Find the Square Root

thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike

1 Answer

more_vert
 
verified
Best answer
num = float(input('Enter a number: '))

num_sqrt = num ** 0.5
print('The square root of %0.3f is %0.3f'%(num ,num_sqrt))
thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
...