From a290ace380d89a374a227715c2cb1bd2a693f48b Mon Sep 17 00:00:00 2001 From: chuttenmaier Date: Tue, 16 Sep 2025 09:49:19 -0400 Subject: [PATCH] I changed the color and the size --- drawing.py | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/drawing.py b/drawing.py index f3ee2e9..31563d2 100644 --- a/drawing.py +++ b/drawing.py @@ -7,16 +7,20 @@ from turtle import ( pendown, color, ) - -forward(100) +color('blue') +forward(300) right(360 * 2 / 5) -forward(100) +color('red') +forward(300) right(360 * 2 / 5) -forward(100) +color('orange') +forward(300) right(360 * 2 / 5) -forward(100) +color('purple') +forward(300) right(360 * 2 / 5) -forward(100) +color('black') +forward(300) right(360 * 2 / 5) input()