Python Program to Find Area of Rectangle

Python Program to Find Area of Rectangle

Write Python Program to Find Area of Rectangle

# Python Program to Find Area of Rectangle

length = 23.21
breadth = 12.20

area = length * breadth            
# Formula to find the area of Rectangle

print("Area of Rectangle having length ", length, " and breadth ", breadth, " is :--> ", area)

Output:

Area of Rectangle having length 23.21 and breadth 12.2 is :-->  283.162