Computer Science, asked by dranjalisinghcom, 8 months ago


Write a program in Python that accepts side of a square by the user and prints the area of the square.​

Answers

Answered by shambhavi12102005121
3

Answer:

Python Program

s=13.

area_square=s*s.

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

Answered by atrs7391
0

s = float(input("Enter the side of the square: "))

print("Area of square =", s * s)

Similar questions