write a program to read length width and height of a parallogram and calculate its area and perimeter
Answers
Answered by
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
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