top of page
Writer's pictureRajesh Singh

Python program to find square root of given number


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



30 views0 comments

Recent Posts

See All

Комментарии


bottom of page