From 5363e17f48b160bcc4fdd5303723586eed812ae1 Mon Sep 17 00:00:00 2001 From: 24_PolujanovVE <24_PolujanovVE@iux.local> Date: Wed, 4 Mar 2026 14:44:52 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=B1=D0=B0=D0=BB=D0=BA=D0=BE=D0=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- task2.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/task2.py b/task2.py index b88a5a2..9dd02e4 100644 --- a/task2.py +++ b/task2.py @@ -10,7 +10,7 @@ dx = 80 y = 450 rect(screen, (100, 100, 100), (0, 0, 1000, 450)) -rect(screen, (20, 20, 20), (0, 450, 1000, 1000)) +rect(screen, (10, 10, 10), (0, 450, 1000, 1000)) circle(screen, (200, 200, 200), (875, 100), 75) @@ -38,6 +38,11 @@ rect(screen, (60, 30, 30), (250, 600, 100, 75)) rect(screen, (200, 200, 30), (400, 600, 100, 75)) +rect(screen, (20, 20, 20), (0, 450, 620, 40)) +for i in range(16): + rect(screen, (20, 20, 20), (40*i, 400, 20, 50)) +rect(screen, (20, 20, 20), (20, 380, 580, 20)) + pygame.display.update() clock = pygame.time.Clock() finished = False