Write a python programme to calculate and display area of rectangle.
Answers
Answered by
0
Answer:
width=5.
height=10.
area=width*height.
print("Area of rectangle="+str(area))
Answered by
3
Python Program
width=5.
height=10.
area=width*height.
print("Area of rectangle="+str(area))
pls thanks me follow, and make me brainliest answer.
Similar questions