Python program to find area of square

Python program to find area of square

Python program to find area of square

In this program, we will learn how to find the area of square. It’s very easy to calculate the area of a square only thing we need to know is the formula for the area of a square which is a*a

#Python program to find area of square

a=int(input(“enter values of  side of square: “))
area=a*a
print(“area of square is = “,area)

Output

enter value of side of square: 25
area of square is = 625

If you like my post please share it with your friends by simply clicking the below social media button, and Don’t forget to comment so we will update ourselves.

Share in a Single Click

Leave a Reply

Your email address will not be published. Required fields are marked *