git_practice/rectangle01.py

7 lines
184 B
Python
Raw Normal View History

2024-12-21 20:36:23 -05:00
2024-12-21 20:49:35 -05:00
length = float(input("Enter a value for the length "))
width = float(input("Enter a value for the width "))
2024-12-21 20:36:23 -05:00
areaOfRectangle = length * width
2024-12-21 20:49:35 -05:00
print(f"Area = {areaOfRectangle:.1f}")