recent

>>> COBOL COMPILER  >>> Make your Computer Welcome You  >>> Windows KMS Activator Free Download + How to Use Windows KMS Activator Ultimate Edition ...   >>> Remove Shortcut Virus From Pen Drive & SD Card  >>> Download and Install Turbo C++or C Software  >>> ലാപ്‌ടോപ് വാങ്ങുമ്പോള്‍ ഈ 6 കാര്യങ്ങൾ ശ്രദ്ധിക്കരുത്!...   >>> How to Get Deleted Files Back from USB or Hard Drive  >>> How To Make Your Own Subtitles With Any Text Editor  >>> How To Clean your RAM using Notepad  >>> Clear Recent Documents Windows 7 & 8    undefined

Thursday, 1 October 2015

Python Program to Find the Square Root

# Python Program to calculate the square root

num = float(input('Enter a number: '))
num_sqrt = num ** 0.5

print('The square root of %0.3f is %0.3f'%(num ,num_sqrt))

No comments :

Post a Comment