Write a Python Program to Find the Square Root
Thanks for contributing an answer!
\(........\)
Avoid writing here -
num = float(input('Enter a number: ')) num_sqrt = num ** 0.5 print('The square root of %0.3f is %0.3f'%(num ,num_sqrt))
382 questions
257 answers
105 comments
155 users