commit fa8978321f7417f0b1027a77e80bb1df9832b04f Author: jdavilabeaz2401 Date: Wed Nov 26 13:24:06 2025 -0500 First commit diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..7551466 --- /dev/null +++ b/README.txt @@ -0,0 +1,7 @@ +This is the "Rectangular Project". As you will see this may have +been a bad choice of naming. + +Step 8 renames a mis-spelled program rectanglar-solid.py to +rectangular-solid.py using the git mv command. + +Ed diff --git a/rectangle01.py b/rectangle01.py new file mode 100644 index 0000000..41a62c8 --- /dev/null +++ b/rectangle01.py @@ -0,0 +1,7 @@ + +length = 4 +width = 3 + +areaOfRectangle = length * width + +print("Area = ",areaOfRectangle) \ No newline at end of file