write a python program to find area of rectangle and area of a square
Answers
Answered by
7
Answer:
- Python Program
- width=5.
- height=10.
- area=width*height.
- print("Area of rectangle="+str(area))
Hope its helpful to you pls mark my brainlist
Answered by
4
Answer:
a = float(input('Enter the rectangle width: '))
b = float(input('Enter the rectangle height: '))
area = a*b
print ("Area =",area)
Explanation:
Similar questions
Hindi,
3 months ago
English,
3 months ago
Psychology,
3 months ago
Hindi,
7 months ago
English,
7 months ago
Geography,
11 months ago
Computer Science,
11 months ago
English,
11 months ago