Quickpaste.it
Create Paste
Top Pastes
Recent Pastes
Settings
Account
Turtle graphics
Created By
Anonymous
Expires never
Raw
Download
0
import turtle colors = ['red', 'purple', 'blue', 'green', 'orange', 'yellow'] turtle.setup(800,600) t = turtle.Pen() turtle.bgcolor('black') for x in range(360): t.pencolor(colors[x%6]) t.width(x/100 + 1) t.forward(x) t.left(59)