From 96519c0d674478fe9a1de1d788aa1315bc643f52 Mon Sep 17 00:00:00 2001 From: dpanarello2 Date: Thu, 2 Oct 2025 10:39:32 -0400 Subject: [PATCH] This is my first submission of creating the circle for the clock. In my next submission, I will add the numbers. --- drawing.py | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/drawing.py b/drawing.py index 29fc89e..3c81dcc 100644 --- a/drawing.py +++ b/drawing.py @@ -3,5 +3,21 @@ # By ____(you)___________ # # (Briefly describe what this program does.) - +import turtle from turtle import * +def draw_clock(): + screen = turtle.Screen() + screen.setup(width=600, height=600) + screen.bgcolor("lightgray") + t = turtle.Turtle() + t.penup() + t.speed(0) + t.pensize(18) + t.color("black") + t.goto(0, -200) + t.pendown() + RADIUS = 200 + t.circle(RADIUS) + turtle.done() +draw_clock() +