Python Math: Calculate the area of a parallelogram
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:
Flowchart:
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.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics