Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python animation

import turtle
turtle.bgcolor("black")

squary = turtle.Turtle()
squary.speed(20)
squary.pencolor("red")
for i in range(400):
    squary.backward(i)
    squary.forward(i)
    squary.left(91
 
PREVIOUS NEXT
Tagged: #python #animation
ADD COMMENT
Topic
Name
1+1 =