Write a program to calculate area of square in python?
Answers
Answered by
5
Explanation:
- s=13.
- area_square=s*s.
- print("Area of the square="+str(area_square))
Answered by
0
Answer:
s=float(input("Enter side")
area=s*s
print("area of square is",area)
Output
Enter side 4
area of square is 16
Similar questions