Python Program To Find Square Root Of Any Number

Python Program To Find Square Root Of Any Number

Code
# Python program to find square root of any number...

num=float(input('Enter a number: '))
print("The square root of number is:",num**0.5)
Output
Enter a number: 36
The square root of number is: 6.0

Post a Comment