git_practice/rectangle01.py

7 lines
168 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
print("Area = ",areaOfRectangle)