Python Program to Calculate Area of Square || Geometric Program || Python

In this we are going to see a basic program to calculate area of square in Python Programming Language.


print("Enter the Side Length of Square: ")
l = float(input())
a = l*l
print("\nArea =", a,"sq units")

 #Code by Shrinivas


#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post