Computer Science, asked by neha415288, 6 months ago

write a programme to read length, width and height of a parallelogram and calculate its area (l*h) and perimeter (2*l+2*w)​

Answers

Answered by sambhavgautam6
9

#Python program for area of ||ogram

Length = int (input("Enter the length::"))

width = int(input("Enter the width::"))

height = int(input("Enter the height::"))

Area= Length*height

Perimeter =2*Length +2*width

print("Area of ||gm is ::", Area)

print ("Perimeter of ||gm is::", Perimeter)

Hope this help you.

Answered by anilranaji
1

Answer:

bese =float input length of b

height = float input

area = base * height

print area is area

Similar questions