Teaching kids programming with Python Turtle
Python tip:
Turtle graphics is a popular way to introduce programming to kids.
You can use it to draw different shapes. The cursor moves on the screen.
An example👇
from turtle import * color("red", "yellow") begin_fill() while True: forward(200) left(170) if abs(pos()) < 1: break end_fill() done()