Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Draw spiral python turtle

import turtle

a = turtle.Turtle()

for i in range(100):
    a.forward(5+i)
    a.right(15)

turtle.done()
Source by holypython.com #
 
PREVIOUS NEXT
Tagged: #Draw #spiral #python #turtle
ADD COMMENT
Topic
Name
6+3 =