This is my first submission of creating the circle for the clock. In my next submission, I will add the numbers.

This commit is contained in:
dpanarello2
2025-10-02 10:39:32 -04:00
parent ee17cbc94f
commit 96519c0d67

View File

@@ -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()