Learn Python, Microsoft 365 and Google Workspace
Connect with me: Youtube | LinkedIn | WhatsApp Channel | Web | Facebook | Twitter
Python Turtle is a fantastic tool for kids to learn coding concepts in a fun and visual way. By using simple commands, kids can control a virtual turtle to draw shapes, designs, and even create animations! Here’s a quick guide to get you started:
import turtle
t = turtle.Turtle()
for i in range(4):
t.forward(100)
t.right(90)
t = turtle.Turtle()
t.screen.bgcolor(“lightblue”)
t.pensize(5) # Try values like 2, 8, or even 15!
t.forward(100)
t.pensize(2) t.left(90) # Turn the turtle 90 degrees left t.forward(50)
t.pencolor(“red”) t.pensize(10) t.right(180) # Turn 180 degrees (full circle) t.forward(80)
Run this code and see how the thickness of the lines changes with different pensize values. You can even change the pen color using pencolor("color name") (like "red", "blue", or "green").
Imagine a turtle with a marker strapped to its belly. In Python's turtle graphics, this turtle can draw on a screen! The `pendown()` and `penup()` commands control the marker, just like a pen.
* `pendown()`: This puts the marker down, so the turtle will draw a line as it scoots around.
* `penup()`: This picks the marker up, so the turtle can move without leaving a trace.
Here's a fun example:
```python
import turtle
# Create a turtle named "t"
t = turtle.Turtle()
# Set the turtle's speed (optional, slower is easier to see)
t.speed(1)
# Make the turtle draw a square
t.pendown()
t.forward(100) # Move forward 100 pixels
t.right(90) # Turn right 90 degrees
t.forward(100)
t.right(90)
t.forward(100)
t.right(90)
t.forward(100)
# Now, let's move the turtle to a new spot without drawing
t.penup()
t.forward(200) # Move forward 200 pixels without drawing
t.right(90)
t.pendown()
# Draw a triangle with a different color (optional)
t.pencolor("red")
t.forward(150)
t.left(120)
t.forward(150)
t.left(120)
t.forward(150)
# Keep the window open until you close it
turtle.done()
Try running this code! You’ll see the turtle draw a square, then move without drawing to a new spot, and finally draw a red triangle. Play around with the code:
forward()
to draw different shapes.pencolor("blue")
.Remember, pendown()
is for drawing, and penup()
is for moving without a trace. With these commands, you can control your turtle to create all sorts of cool pictures!
With these basic commands, kids can start creating their own drawings and animations using Python Turtle. There are many online resources and tutorials that provide more advanced projects as well!
Sure, here’s some more you can explore with Python Turtle:
for i in range(30): t.forward(i * 5) t.right(24)
* Challenge: Try modifying this code to change the direction of the spiral (clockwise or counter-clockwise) or the spacing between the loops.
* Variables: Introduce variables to customize your drawings. For instance, you can store the side length of a square in a variable and use it to draw squares of different sizes.
Let's draw some fun shapes with our turtle friend! Here are a few examples in Python using turtle graphics:
**1. Square:**
This is a basic shape to get started.
```python
import turtle
# Create a turtle named "t"
t = turtle.Turtle()
# Set the turtle's speed (optional, slower is easier to see)
t.speed(1)
# Make the turtle draw a square with a black pen
t.pendown()
t.forward(100) # Move forward 100 pixels to draw a side
t.right(90) # Turn right 90 degrees to change direction
t.forward(100)
t.right(90)
t.forward(100)
t.right(90)
t.forward(100)
# Keep the window open until you close it
turtle.done()
2. Triangle:
Change the angles slightly to draw a triangle!
import turtle
# Create a turtle named "t"
t = turtle.Turtle()
# Set the turtle's speed (optional)
t.speed(1)
# Make the turtle draw a triangle with a blue pen
t.pendown()
t.pencolor("blue")
t.forward(150) # Move forward for the first side
t.left(120) # Turn left 120 degrees for triangle angles
t.forward(150)
t.left(120)
t.forward(150)
# Keep the window open
turtle.done()
3. Circle:
The turtle doesn’t draw a perfect circle by itself, but we can get close!
import turtle
# Create a turtle named "t"
t = turtle.Turtle()
# Set the turtle's speed (optional)
t.speed(1)
# Make the turtle draw a circle (many small lines)
t.pendown()
for i in range(360): # Loop 360 times for a full circle
t.forward(1)
t.right(1) # Small turn for each line
# Keep the window open
turtle.done()
4. Star:
Combine lines and turns to create a cool star!
import turtle
# Create a turtle named "t"
t = turtle.Turtle()
# Set the turtle's speed (optional)
t.speed(1)
# Make the turtle draw a yellow star
t.pendown()
t.pencolor("yellow")
for i in range(5): # Draw 5 lines for the star points
t.forward(100)
t.right(144) # Angle to create a pointed star
# Keep the window open
turtle.done()
Remember, you can change the colors with pencolor("color")
, adjust the distances with forward(distance)
, and play with the turning angles (right(angle)
) to create all sorts of shapes! Explore and have fun!
import turtle
t = turtle.Turtle()
size = 100
# Draw a square with side length 'size'
for i in range(4):
t.forward(size)
t.right(90)
I’ll provide the next lecture content on enhancing Python Turtle creations: Adding Color and Customization Python Turtle offers a vibrant range of colors and customization options to bring your drawings to life!
t.fillcolor(“yellow”) t.begin_fill()
t.end_fill()
Here’s an example of using fillcolor
to draw a colored rectangle in Python turtle:
import turtle
# Create a turtle named "t"
t = turtle.Turtle()
# Set the turtle's speed (optional, slower is easier to see)
t.speed(1)
# Set the fill color (example: blue)
t.fillcolor("blue")
# Tell the turtle to start filling upcoming shapes
t.begin_fill()
# Draw the rectangle (using forward and right)
t.pendown()
t.forward(100) # Length of the rectangle
t.right(90) # Turn 90 degrees
t.forward(50) # Width of the rectangle
t.right(90)
t.forward(100)
t.right(90)
t.forward(50)
# Tell the turtle to stop filling
t.end_fill()
# Keep the window open until you close it
turtle.done()
Explanation:
turtle
library.t
.t.fillcolor("blue")
. You can replace “blue” with any color name or hex code.t.begin_fill()
to tell the turtle to start filling the upcoming closed shape.pendown()
, forward()
, and right()
.
forward(100)
moves the turtle forward 100 pixels, creating the length of the rectangle.right(90)
turns the turtle 90 degrees four times to complete the rectangle.t.end_fill()
to tell the turtle to stop filling.turtle.done()
keeps the window open until you close it.This code will draw a blue rectangle on the screen. You can experiment with different colors and rectangle sizes!
Imagine you’re painting a picture. Before you start drawing all the fun shapes and characters, you choose a background color, right? In Python’s turtle graphics, the bgcolor()
function lets you set the background color for your drawings!
Think of it like painting the canvas before your turtle friend starts creating its masterpiece. Here’s how it works:
import turtle
# Create a turtle named "t"
t = turtle.Turtle()
# Set the background color (example: light blue)
turtle.bgcolor("lightblue")
# Now the turtle can draw on a light blue background!
# (You can add your drawing code here)
# Keep the window open until you close it
turtle.done()
In this example:
turtle
library.t
.turtle.bgcolor("lightblue")
to set the background color to light blue. You can try other color names or hex codes.# (You can add your drawing code here)
to show where you would place your drawing commands.turtle.done()
keeps the window open.Experimenting with bgcolor:
Remember, bgcolor
sets the color behind everything the turtle draws. Play around and see what cool backgrounds you can create for your turtle pictures!
Circles and Arcs:
Using the circle() function:
The turtle library actually has a built-in function for circles! This is a bit more advanced, but it’s a shortcut to draw a perfect circle.
import turtle
# Create a turtle named "t"
t = turtle.Turtle()
# Set the turtle's speed (optional)
t.speed(1)
# Make the turtle draw a circle with a radius of 50
t.pendown()
t.circle(50) # Circle with radius 50
# Keep the window open
turtle.done()
Explanation:
turtle
library.t
.t.circle(50)
. This function draws a circle with a radius of 50 pixels. The bigger the number, the bigger the circle.Challenge:
t.circle( )
to see how it affects the circle size.t.pencolor("color")
before drawing the circle!Custom Shapes:
Absolutely! By combining t.penup()
, t.goto(x, y)
, and t.pendown()
, you can create various custom shapes in Python’s turtle graphics. Here’s how:
t.penup()
for movement: When the turtle doesn’t need to draw, use t.penup()
to lift the pen and move it to the starting point of the next line segment.t.goto(x, y)
for positioning: This function precisely positions the turtle at a specific coordinate (x, y) on the screen.t.pendown()
for drawing: When you’re ready to draw a line segment, use t.pendown()
to put the pen down and start drawing.Here’s an example to draw a house:
import turtle
# Create a turtle named "t"
t = turtle.Turtle()
# Set the turtle's speed (optional)
t.speed(1)
# House base (square)
t.pendown()
t.forward(100)
t.right(90)
t.forward(50)
t.right(90)
t.forward(100)
t.right(90)
t.forward(50)
t.penup() # Lift the pen to move to the roof
# Move the turtle to the roof starting point
t.goto(50, 50) # Move to (x, y) coordinates
t.pendown()
# Roof (triangle)
t.left(60) # Adjust angle for roof slope
t.forward(70)
t.right(120)
t.forward(140)
t.right(120)
t.forward(70)
# Door (rectangle)
t.penup()
t.goto(20, 0) # Move to door position
t.pendown()
t.forward(30)
t.right(90)
t.forward(20)
t.right(90)
t.forward(30)
t.right(90)
t.forward(20)
# Keep the window open
turtle.done()
Challenge:
t.pencolor("color")
.Exploring Creative Techniques
Absolutely! By combining t.penup()
, t.goto(x, y)
, and t.pendown()
, you can create various custom shapes in Python’s turtle graphics. Here’s how:
t.penup()
for movement: When the turtle doesn’t need to draw, use t.penup()
to lift the pen and move it to the starting point of the next line segment.t.goto(x, y)
for positioning: This function precisely positions the turtle at a specific coordinate (x, y) on the screen.t.pendown()
for drawing: When you’re ready to draw a line segment, use t.pendown()
to put the pen down and start drawing.Here’s an example to draw a house:
import turtle
# Create a turtle named "t"
t = turtle.Turtle()
# Set the turtle's speed (optional)
t.speed(1)
# House base (square)
t.pendown()
t.forward(100)
t.right(90)
t.forward(50)
t.right(90)
t.forward(100)
t.right(90)
t.forward(50)
t.penup() # Lift the pen to move to the roof
# Move the turtle to the roof starting point
t.goto(50, 50) # Move to (x, y) coordinates
t.pendown()
# Roof (triangle)
t.left(60) # Adjust angle for roof slope
t.forward(70)
t.right(120)
t.forward(140)
t.right(120)
t.forward(70)
# Door (rectangle)
t.penup()
t.goto(20, 0) # Move to door position
t.pendown()
t.forward(30)
t.right(90)
t.forward(20)
t.right(90)
t.forward(30)
t.right(90)
t.forward(20)
# Keep the window open
turtle.done()
Challenge:
t.pencolor("color")
.import turtle
t = turtle.Turtle()
speed = 10
for i in range(100):
t.pencolor("lightblue")
t.circle(i * speed)
t.right(90)
t.pencolor("orange")
t.circle(i * speed - 20)
t.left(90)
With these enhancements, you’re well on your way to crafting even more expressive and visually engaging Python Turtle creations!
In the next lecture on Python Turtle, we’ll explore exciting ways to make your programs more interactive and visually interesting:
Using t.screen.addshape()
(for older kids):
This method is for slightly more advanced users. It involves creating a separate image file (like a GIF) and then linking it to the turtle program. Here’s a basic example:
import turtle
# Create a turtle named "t"
t = turtle.Turtle()
# Set the screen object
screen = t.screen
# Add the image shape (replace "myshape.gif" with your filename)
screen.addshape("myshape.gif")
# Now you can use t.shape("myshape.gif") to draw the image!
Explanation:
turtle
library.screen.addshape("myshape.gif")
to link the image file named “myshape.gif” to the turtle program.t.shape("myshape.gif")
to change the turtle’s shape to the image. Then you can draw with that shape!Important note: This approach might be a bit complex for younger kids.
Alternative for younger kids:
t.fillcolor()
to create colorful and interesting shapes!Remember, Python Turtle is a great introduction to coding concepts, and building creative images with basic shapes is a fun way to learn!
def click_handler(x, y):
t.goto(x, y)
t.dot(10, "red") # Draw a red dot at the click position
t.screen.onclick(click_handler)
This code creates a function (click_handler) that draws a red dot wherever you click on the screen.
def change_color(key):
if key == "r":
t.pencolor("red")
elif key == "g":
t.pencolor("green")
t.screen.onkeypress(change_color, "r") # Listen for 'r' keypress
t.screen.onkeypress(change_color, "g") # Listen for 'g' keypress
This code changes the turtle’s pen color to red when you press ‘r’ and green when you press ‘g’. By combining these techniques, you can create dynamic and engaging Python Turtle programs that respond to user interaction.
Here are some examples of using screen.onkeypress
in Python Turtle:
1. Drawing a Square:
This example demonstrates how to draw a square when the spacebar is pressed.
import turtle
# Create a turtle named "t"
t = turtle.Turtle()
# Set the turtle's speed (optional)
t.speed(1)
def draw_square():
# Draw the square using forward and right
t.pendown()
t.forward(100)
t.right(90)
t.forward(100)
t.right(90)
t.forward(100)
t.right(90)
t.forward(100)
t.penup() # Lift the pen after drawing
# Listen for the spacebar key
screen = t.screen
screen.onkeypress(draw_square, "space")
# Listen for key presses
screen.listen()
# Keep the window open until you close it
turtle.done()
2. Moving the Turtle:
This example shows how to move the turtle up, down, left, and right using the arrow keys.
import turtle
# Create a turtle named "t"
t = turtle.Turtle()
# Set the turtle's speed (optional)
t.speed(1)
def move_up():
t.setheading(90) # Set heading to face north (up)
t.forward(50) # Move forward 50 pixels
def move_down():
t.setheading(270) # Set heading to face south (down)
t.forward(50)
def move_left():
t.setheading(180) # Set heading to face west (left)
t.forward(50)
def move_right():
t.setheading(0) # Set heading to face east (right)
t.forward(50)
# Listen for key presses
screen = t.screen
screen.onkeypress(move_up, "Up")
screen.onkeypress(move_down, "Down")
screen.onkeypress(move_left, "Left")
screen.onkeypress(move_right, "Right")
screen.listen()
# Keep the window open until you close it
turtle.done()
3. Changing Pen Color:
This example allows you to change the turtle’s pen color by pressing specific keys.
import turtle
# Create a turtle named "t"
t = turtle.Turtle()
# Set the turtle's speed (optional)
t.speed(1)
def change_color_red():
t.pencolor("red")
def change_color_blue():
t.pencolor("blue")
def change_color_green():
t.pencolor("green")
# Listen for key presses
screen = t.screen
screen.onkeypress(change_color_red, "r")
screen.onkeypress(change_color_blue, "b")
screen.onkeypress(change_color_green, "g")
screen.listen()
# Keep the window open until you close it
turtle.done()
Remember:
screen.listen()
after defining the onkeypress
events to start listening for key presses.advanced concepts to elevate your Python Turtle mastery!
Example: Fractal Snowflake
import turtle
def snowflake_arm(t, length, levels):
if levels == 0:
t.forward(length)
return
snowflake_arm(t, length / 3, levels - 1)
t.left(60)
snowflake_arm(t, length / 3, levels - 1)
t.right(120)
snowflake_arm(t, length / 3, levels - 1)
t.left(60)
snowflake_arm(t, length / 3, levels - 1)
t = turtle.Turtle()
t.speed(0)
snowflake_arm(t, 200, 3)
This code demonstrates a recursive function to draw a beautiful snowflake fractal. As you progress, Python Turtle offers a springboard to explore more intricate graphics programming concepts.