Answer 3
unknown
python
9 months ago
189 B
11
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