Hey Guys,
Python Turtle could be a super fun way of teaching programming to kids. Since I am spending a lot of time with my kid, I am trying to teach him coding by the way of Turtle - Library of Python. My kid is 8 years old. He kind of likes it but still it requires a lot of work to excite him to try it. Let me jump into it.
To learn about it, see: https://docs.python.org/3/library/turtle.html
First step is to import turtle
from turtle import *
Second step is to initialize, screen:
Screen()
To move forward and draw 30 pixels:
forward(30)
To turn left by 120:
left(120)
To back home where you started:
home()
To clear everything:
clear()
You can use it inside loops:
for i in range(3):
forward(30)
left(120)
This will draw a triangle:
Try drawing fun things such as a cube. And post your code here along with the image. I will be sharing my turtle-art here.