Computer Science, asked by soumyakalra7, 1 month ago

WAP to print the area of a square using variables.
(python)

Answers

Answered by shahanagarlay
3

Answer:

♥♥

Explanation:

♥♥Python Program

s=13.

area_square=s*s.

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

Answered by kookiesandmilk
0

Answer:

s=int("input("Enter side"))

area=s*s

print("Area of square is ", area)

Similar questions