git_practice/homework06/program-files/1 - start/rectangle01.py
2025-12-14 18:34:36 -05:00

7 lines
No EOL
89 B
Python

length = 4
width = 3
areaOfRectangle = length * width
print("Area = ",areaOfRectangle)