Write a program in Python that accepts side of a square by the user and prints the area of the square.
Answers
Answered by
3
Answer:
Python Program
s=13.
area_square=s*s.
print("Area of the square="+str(area_square))
Answered by
0
s = float(input("Enter the side of the square: "))
print("Area of square =", s * s)
Similar questions