Write a program to calculate area of square in python?
Answers
Answered by
2
Answer:
s=13
area_square=s*s
print("Area of the square="+str(area_square))
Explanation:
Answered by
5
Explanation:
Python Program
s=13.
area_square=s*s.
print("Area of the square="+str(area_square))
Similar questions