Python Program to Find Area of Parallelogram

Python Program to Find Area of Parallelogram

Write Python Program to Find Area of Parallelogram

# Python Program to Find Area of Parallelogram

base = 1.5
height = 10.0

# Formula to find the area of Rectangle
area = base * height

print("Area of Parallelogram having base ", base, " and height ", height, " is :--> ", area)

Output:

Area of Parallelogram having base 1.5 and height 10.0 is :-->  15.0