Answer 3

mail@pastecode.io avatar
unknown
python
20 days ago
189 B
6
Indexable
Never

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)
Leave a Comment