Draw Clock Design using Turtle in Python Last Updated : 26 Jul, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report Prerequisites: Turtle Programming in Python Turtle is an inbuilt module in Python. It provides drawing using a screen (cardboard) and turtle (pen). To draw something on the screen, we need to move the turtle (pen). To move turtle, there are some functions i.e forward(), backward(), etc. To draw Clock Design : Following steps are used : Import turtle.Create Screen object and set Screen configuration.Create Turtle object and set its position and speed.Draw a dashed line and print number in circular shape.Draw center and fill color black in itWrite "GFG" and "CLOCK" at required position. Below is the implementation: Python3 # import package import turtle # create a Screen Object screen = turtle.Screen() # Screen configuration screen.setup(500, 500) # Make turtle Object clk = turtle.Turtle() # set a Turtle object color clk.color('Green') # set a Turtle object width clk.width(4) def draw_hour_hand(): clk.penup() clk.home() clk.right(90) clk.pendown() clk.forward(100) # value for numbers in clock val = 0 # loop for print clock numbers for i in range(12): # increment value by 1 val += 1 # move turtle in air clk.penup() # for circular motion clk.setheading(-30 * (i + 3) + 75) # move forward for space clk.forward(22) # move turtle to surface clk.pendown() # move forward for dash line clk.forward(15) # move turtle in air clk.penup() # move forward for space clk.forward(20) # write clock integer clk.write(str(val), align="center", font=("Arial", 12, "normal")) # colored centre by setting position # sets position of turtle at given position clk.setpos(2, -112) clk.pendown() clk.width(2) # To fill color green clk.fillcolor('Green') # start filling clk.begin_fill() # make a circle of radius 5 clk.circle(5) # end filling clk.end_fill() clk.penup() draw_hour_hand() clk.setpos(-20, -64) clk.pendown() clk.penup() # Write Clock by setting position clk.setpos(-30, -170) clk.pendown() clk.write(' GfG Clock', font=("Arial", 14, "normal")) clk.hideturtle() turtle.done() Output: Comment More infoAdvertise with us Next Article Draw Circle in Python using Turtle D deepanshu_rustagi Follow Improve Article Tags : Python Python-turtle Python-projects Practice Tags : python Similar Reads Draw Circle in Python using Turtle Turtle graphics is an engaging way to learn Python programming by visualizing geometric shapes. The turtle module lets you control a turtle to draw lines and shapes on the screen, making it an ideal tool for beginners. Below, we'll explore how to draw circles and create more complex patterns like ta 2 min read Draw Chess Board Using Turtle in Python Prerequisite: Turtle Programming Basics Turtle is an inbuilt module in Python. It provides drawing using a screen (cardboard) and turtle (pen). To draw something on the screen, we need to move the turtle (pen). To move turtle, there are some functions i.e forward(), backward(), etc. For drawing Ches 2 min read Draw a car using Turtle in Python Prerequisite: Turtle module, Drawing Shapes There are many modules in python which depict graphical illustrations, one of them is a turtle, it is an in-built module in Python, which lets the user control a pen(turtle) to draw on the screen(drawing board). It is mostly used to illustrate figures, sha 2 min read Draw Colored Solid Cube using Turtle in Python Turtle is an inbuilt module in Python. It provides:Â Drawing using a screen (cardboard).Turtle (pen). To draw something on the screen, we need to move this turtle (pen) and to move the turtle(pen), there are some functions like the forward(), backward(), etc. Prerequisite: Turtle Programming Basics 2 min read Create digital clock using Python-Turtle Turtle is a special feature of Python. Using Turtle, we can easily draw on a drawing board. First, we import the turtle module. Then create a window, next we create a turtle object and using the turtle methods we can draw in the drawing board. Prerequisites: Turtle Programming in Python Installation 3 min read Draw a Flower using Turtle in Python We are given the task of drawing a flower using Turtle Graphics in Python. Our goal is to create a design that looks like a flower with multiple petals arranged in a circular pattern. We will do this by using loops to repeat the petal shape and turtle commands to draw and rotate the petals, forming 3 min read Like