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

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.