Control and Customize Turtle Movements in Python Lesson 2
Control and Customize Turtle Movements in Python Lesson 2
Movements in Python
Lesson Objectives
By the end of the lesson, the learner should be
able to;
0°: East
90°: North
180°: West
270°: South
Draws a circular dot with a turtle.dot()
specified size and color. Function
Syntax: turtle.dot(size=None,
*color)
Parameters:
size: Diameter of the dot
(integer >= 1).
color: Color of the dot
(colorstring or numeric color
tuple).
Assignment
Create a Turtle Design
Objective:
The goal of this assignment is to reinforce your understanding of the Turtle library by creating a
unique design using the turtle.setx(), turtle.sety(), turtle.seth(), and turtle.dot() functions. You
will also customize the Turtle’s appearance and movement to create an engaging visual output.
Requirements
Use the following Turtle functions at least once in your program:
turtle.setx()
turtle.sety()
Submission Guidelines
turtle.seth()
1.
turtle.dot()
Submit your Python code as
Customize the Turtle’s speed and appearance (e.g., pen color, pen size, shape).
a .py file.
Include at least three dots and two directional changes in your design.
Include a screenshot of your
Add a title or label to your design using the turtle.write() function.
Turtle design.
Write a short explanation (2-3
sentences) describing your