git_practice/homework06/git-practice/rectangle01.py
cmitchell2301 fc26ebd5f8 retry
2025-12-14 19:22:58 -05:00

7 lines
No EOL
184 B
Python

length = float(input("Enter a value for the length "))
width = float(input("Enter a value for the width "))
areaOfRectangle = length * width
print(f"Area = {areaOfRectangle:.1f}")