India Languages, asked by suyash9414, 10 months ago

write a program to read length width and height of a parallogram and calculate its area and perimeter

Answers

Answered by Anonymous
2

Answer:

PYTHON :

base = float(input('Length of base: '))

height = float(input('Measurement of height: '))

area = base * height

print("Area is: ", area)

Hi I am a python coder

For more codes, please follow me

Answered by ashauthiras
1

Answer:

PYTHON :

base = float(input('Length of base: '))

height = float(input('Measurement of height: '))

area = base * height

print("Area is: ", area)

Explanation:

Similar questions