top of page

Python program to find square root of given number

  • Writer: Rajesh Singh
    Rajesh Singh
  • Jun 16, 2021
  • 1 min read

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



Recent Posts

See All

Kommentare


bottom of page