Computer Science, asked by shrey4770, 1 year ago


Write a program in python to enter the side of a square and print the area, and perimeter

Answers

Answered by heroboy53
12

Answer:

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

Similar questions