From eb985b158a8aef658f0fc74a054629470f2994ee Mon Sep 17 00:00:00 2001 From: klinn Date: Tue, 10 Feb 2026 11:07:48 -0500 Subject: [PATCH] Fixed --- shapes.py | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/shapes.py b/shapes.py index 731ec39..c0a51a0 100644 --- a/shapes.py +++ b/shapes.py @@ -5,7 +5,21 @@ from turtle import * def triangle(side_length): - pass + forward(side_length) + right(120) + forward(side_length) + right(120) + forward(side_length) + right(120) def rectangle(height, width): - pass + forward(width) + right(90) + forward(height) + right(90) + forward(width) + right(90) + forward(height) + right(90) + +