google.com, pub-4617457846989927, DIRECT, f08c47fec0942fa0 Learn to enjoy every minute of your life.Only I can change my life.: program in python to Calculate Area of Square Very easy
Showing posts with label program in python to Calculate Area of Square Very easy. Show all posts
Showing posts with label program in python to Calculate Area of Square Very easy. Show all posts

Friday, December 13, 2019

Write a program in python to Calculate Area of Square

Write a program in python to Calculate Area of Square


Answer:
# 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);

Biggest achievements of life

 Here are the biggest achievements of life, explained with additional examples: 1. Finding Purpose and Fulfillment Discovering one's pas...