First commit

This commit is contained in:
jdavilabeaz2401 2025-11-26 13:24:06 -05:00
commit fa8978321f
2 changed files with 14 additions and 0 deletions

7
rectangle01.py Normal file
View file

@ -0,0 +1,7 @@
length = 4
width = 3
areaOfRectangle = length * width
print("Area = ",areaOfRectangle)