Computer Science, asked by klintonverma1, 7 months ago

Write a program to calculate area of square in python?

Answers

Answered by Rahul9048
2

Answer:

s=13  

area_square=s*s  

print("Area of the square="+str(area_square))  

Explanation:

Answered by angelworld57801
5

Explanation:

Python Program

s=13.

area_square=s*s.

print("Area of the square="+str(area_square))

Similar questions