diff --git a/homework06/git-practice/rectangle01.py b/homework06/git-practice/rectangle01.py new file mode 100644 index 0000000..d2c7c0e --- /dev/null +++ b/homework06/git-practice/rectangle01.py @@ -0,0 +1,7 @@ + +length = float(input("Enter a value for length ")) +width = float(input("Enter a value for width ")) + +areaOfRectangle = length * width + +print("Area = ",areaOfRectangle) \ No newline at end of file