Friday, December 13, 2019

Write a program in python to Calculate Perimeter of Square

Write a program in python to Calculate Perimeter of Square


# Python Program - Calculate Perimeter of Square

print("Enter 'x' for exit.");
side = input("Enter side length of square: ");
if side == 'x':
    exit();
else:
    slength = int(side);
    perimeter = 4*slength;
    print("\nPerimeter of Square =", perimeter);

No comments:

Post a Comment

Featured posts

Mongolia

 Mongolia! Mongolia is a vast and sparsely populated country in East Asia, known for its stunning natural beauty, rich history, and unique c...

Popular posts