Answer 3

 avatar
unknown
python
a year ago
189 B
13
Indexable

length = float(input("Enter the length of the rectangle: "))
width = float(input("Enter the width of the rectangle: "))

area = length * width

print("The area of the rectangle is:", area)
Editor is loading...
Leave a Comment