Program:
n=float(input("Enter a number: "))
a=n**.5
print("The square roots of given number is ", a)
Output:
Enter a number: 16
The square roots of given number is 4.0
Python program to find square root of given number using math function:
Program:
import math
n=float(input("Enter a number: "))
a=math.sqrt(n)
print("The square roots of given number is ", a)
Output:
Enter a number: 25
The square roots of given number is 5.0
Комментарии