From fa8978321f7417f0b1027a77e80bb1df9832b04f Mon Sep 17 00:00:00 2001 From: jdavilabeaz2401 Date: Wed, 26 Nov 2025 13:24:06 -0500 Subject: [PATCH] First commit --- README.txt | 7 +++++++ rectangle01.py | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 README.txt create mode 100644 rectangle01.py 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