git_practice/rectangle01.py

7 lines
174 B
Python
Raw Normal View History

2024-12-21 20:36:23 -05:00
2024-12-21 20:40:11 -05:00
length = float(input("Enter a value for length "))
width = float(input("Enter a value for width "))
2024-12-21 20:36:23 -05:00
areaOfRectangle = length * width
2024-12-21 20:42:34 -05:00
print(f"Area = {areaOfRectangle:.2f}")