From 230c0ce1505c67ddbfee3f746c5cf6b21a63cd68 Mon Sep 17 00:00:00 2001 From: sairate Date: Tue, 16 Jul 2024 10:31:10 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=202024.7.16.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: sairate --- 2024.7.16.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/2024.7.16.py b/2024.7.16.py index 514e763..d2912e3 100644 --- a/2024.7.16.py +++ b/2024.7.16.py @@ -9,11 +9,11 @@ for j in range(100): t.penup() t.goto(x,y) t.pendown() + r = random.random() + g = random.random() + b = random.random() + t.pencolor(1, g, b) for i in range(0,6): - r = random.random() - g = random.random() - b = random.random() - t.pencolor(1, g, b) t.forward(step) t.penup() t.backward(step//2) -- 2.40.1