We are going to share a Calculate area of the rectangle in Python. If you are a python beginner and want to start learning the python programming, then keep your close attention in this tutorial as I am going to share a Program to find the factors of a number with the output.
To increase your Python knowledge, practice all Python programs, here is a collection of 100+ Python problems with solutions.
Copy the below python program and execute it with the help of python compiler.
1 2 3 4 5 6 7 8 9 10 | print("Enter 'x' for exit."); leng = input("Enter length of Rectangle: "); if leng == 'x': exit(); else: brea = input("Enter breadth of Rectangle: "); length = int(leng); breadth = int(brea); area = length*breadth; print("\nArea of Rectangle =",area); |
Enter ‘x’ for exit.
Enter length of Rectangle: 5
Enter breadth of Rectangle: 4
Area of Rectangle = 20
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.