Ad Code

Responsive Advertisement

Basic Python Program - 03.

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:




Post a Comment

0 Comments

Ad Code

Responsive Advertisement