From f9882f1c86a6a83f5ae8ef1c494e0f9692a16cf5 Mon Sep 17 00:00:00 2001 From: juddin2 Date: Sun, 31 Aug 2025 18:12:01 -0400 Subject: [PATCH] I changed the numbers to create a new shape. I was a little frustrated because I couldn't get the turtle to change the shape into what I wanted. --- drawing.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/drawing.py b/drawing.py index f3ee2e9..743883f 100644 --- a/drawing.py +++ b/drawing.py @@ -8,15 +8,15 @@ from turtle import ( color, ) -forward(100) -right(360 * 2 / 5) -forward(100) -right(360 * 2 / 5) -forward(100) -right(360 * 2 / 5) -forward(100) -right(360 * 2 / 5) -forward(100) -right(360 * 2 / 5) +forward(150) +right(200 * 2 / 5) +forward(200) +right(200 * 2 / 5) +forward(200) +right(200 * 2 / 5) +forward(200) +right(200 * 2 / 5) +forward(200) +right(100 * 2 / 5) + -input()