Library Turtle is a popular way to introduce kids to programming. It is part of the Logo programming language developed by Wally Feurzeig, Seymour Papert and Cynthia Solomon in 1967.
Colorful Flowers with Turtle library
import turtle
s = turtle.Screen()
t = turtle.Turtle()
s.bgcolor('#262626')
t.pencolor('#540d6e')
t.speed(100)
col = ('#ee4266', '#ffd23f', '#3bceac', '#0ead69')
for n in range(5):
for x in range(8):
t.speed(x+10)
for i in range(2):
t.pensize(2)
t.circle(80+n*20,90)
t.lt(90)
t.lt(45)
t.pencolor(col[n%4])
s.exitonclick()
Blogger Comment
Facebook Comment