w3resource

Python Math: Calculate the area of a parallelogram

Python Math: Exercise-4 with Solution

Write a Python program to calculate the area of a parallelogram.
Note: A parallelogram is a quadrilateral with opposite sides parallel (and therefore opposite angles equal). A quadrilateral with equal sides is called a rhombus, and a parallelogram whose angles are all right angles is called a rectangle.

Sample Solution:-

Python Code:

base = float(input('Length of base: '))
height = float(input('Measurement of height: '))
area = base * height
print("Area is: ", area)

Sample Output:

Length of base: 5                                                                                             
Measurement of height: 6                                                                                      
Area is:  30.0 

Pictorial Presentation:

Python Math: Calculate the area of a parallelogram

Flowchart:

Flowchart: Calculate area of a parallelogram

Visualize Python code execution:

The following tool visualize what the computer is doing step-by-step as it executes the said program:

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to calculate the area of a trapezoid.
Next: Write a Python program to calculate surface volume and area of a cylinder.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.

Python: Tips of the Day

Get Current Process Id:

import os
os.getpid()
21423

 





We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook