Write a Python program to find the square root of a number.
IDE: Visual Studio Code ( VSC ). Present: go2collage.
Download hole Program / Project code, by clicking following link:
Programming Code:
# Basic Python Program
# square root of a number
a = int(input("Enter a integer number: "))
a = a ** 2 # square root using Exponentiation (**) operator
print("square root is: ", a)
Output:
0 Comments