🎨 Python Pictionary 🐢

Draw amazing pictures with Python turtle graphics code!

Level
1
Score
0
Accuracy
0%
Time
0s
Stars

🖼️ Drawing Canvas

Speed: 5
Draw a Star
Use forward() and right() commands
Level 1: Draw a Star
Use turtle commands to draw a 5-pointed star. Try forward(100) and right(144) in a loop!
Ready to draw! Write your code and click Run.

🐢 Turtle Commands:

forward(n) Move forward n pixels
backward(n) Move backward n pixels
right(deg) Turn right by degrees
left(deg) Turn left by degrees
circle(r) Draw circle with radius r
penup() Lift pen (stop drawing)
pendown() Put pen down (start drawing)
color('color') Change pen color

🎉 Drawing Complete!

⭐⭐⭐

Excellent artwork!