Python Projects - Unknown 3

Python Turtle

OBJECTIVE: Make multiple spirals

 



CODE:

import turtle

spiral= turtle.Turtle()

colors=["red","blue","yellow","orange","pink", "purple"]

for count in range(300):

spiral.color(colors[count%6])

spiral.forward(count)

spiral.left(59)




CHALLENGE: Try making these shapes

Python Turtle




Media and Press Coverage