Computer Science, asked by klintonverma1, 8 months ago

Write a program to calculate area of square in python?

Answers

Answered by Anonymous
5

Explanation:

  • s=13.

  • area_square=s*s.

  • print("Area of the square="+str(area_square))
Answered by kookiesandmilk
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