Started Rectangle

main
vnakonechnyi 2024-12-21 20:36:23 -05:00
parent c9234094cf
commit 2e4fbbf37f
2 changed files with 9 additions and 2 deletions

View File

@ -1,7 +1,7 @@
This is the "Rectangular Project". As you will see this may have This is the "Rectangular Project". As you will see this may have
been a bad choice of naming. been a bad choice of naming.
This is also a file to keep Windows Zip program happy. Windows Zip Step 8 renames a mis-spelled program rectanglar-solid.py to
will not include an empty directory. rectangular-solid.py using the git mv command.
Ed Ed

7
rectangle01.py Normal file
View File

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