git-practice/rectangle01.py
2025-11-26 13:33:20 -05:00

7 lines
No EOL
168 B
Python

length = float(input("Enter a value for length "))
width = float(input("Enter a value for width "))
areaOfRectangle = length * width
print("Area = ",areaOfRectangle)