WAP to print the area of a square using variables.
(python)
Answers
Answered by
3
Answer:
♥♥
Explanation:
♥♥Python Program
s=13.
area_square=s*s.
print("Area of the square="+str(area_square))
Answered by
0
Answer:
s=int("input("Enter side"))
area=s*s
print("Area of square is ", area)
Similar questions