Answer 3

Anonymous
python
09/16/2024 5:49 AM
252 B
20
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