Computer Science, asked by goyalpratham643, 10 months ago

write the python program
1
23
456
78910​

Answers

Answered by rajinisanthosh2003
0

Answer:

hey buddy here is ur answer

Explanation:

Following python program ask from user to enter side length of square to print area of the square:

# Python Program - Calculate Area of Square print("Enter 'x' for exit."); side = input("Enter side length of Square: "); if side == 'x': exit(); else: side_length = int(side); area_square = side_length*side_length; print("\nArea of Square =",area_square

hope it helps

pls mark me brainliest !! : )

Similar questions