Turtle Designs

Spiral Turtle

 
                import turtle
                colors = [ "red","purple","blue","green","orange","yellow"]
                my_pen = turtle.Pen()
                turtle.bgcolor("black")
                for x in range(360):
                 my_pen.pencolor(colors[x % 6])
                 my_pen.width(x/100 + 1)
                 my_pen.forward(x)
                 my_pen.left(59)



 

Netflix LOGO

 
  

                #NETFLIX LOGO
                import turtle
                t = turtle.Turtle()
                t.speed(10)
                turtle.bgcolor("white")
                t.color("white")
                t.up()
                t.goto(-80,50)
                t.down()
                t.fillcolor("black")
                t.begin_fill()
                t.forward(200)
                t.setheading(270)
                s = 360
                for i in range(9):
                    s = s - 10
                    t.setheading(s)
                    t.forward(10)
                
                    
                t.forward(180)
                s = 270
                for i in range(9):
                    s = s - 10
                    t.setheading(s)
                    t.forward(10)
                
                t.forward(200)
                s = 180
                for i in range(9):
                    s = s - 10
                    t.setheading(s)
                    t.forward(10)
                
                t.forward(180)
                s = 90
                for i in range(9):
                    s = s - 10
                    t.setheading(s)
                    t.forward(10)
                t.forward(30)    
                t.end_fill()
                t.up()
                t.color("black")
                t.setheading(270)
                t.forward(240)
                t.setheading(0)
                t.down()
                t.color("red")
                t.fillcolor("#E50914")
                t.begin_fill()
                t.forward(30)
                t.setheading(90)
                t.forward(180)
                t.setheading(180)
                t.forward(30)
                t.setheading(270)
                t.forward(180)
                t.end_fill()
                t.setheading(0)
                t.up()
                t.forward(75)
                t.down()
                t.color("red")
                t.fillcolor("#E50914")
                t.begin_fill()
                t.forward(30)
                t.setheading(90)
                t.forward(180)
                t.setheading(180)
                t.forward(30)
                t.setheading(270)
                t.forward(180)
                t.end_fill()
                t.color("red")
                t.fillcolor("red")
                t.begin_fill()
                t.setheading(113)
                t.forward(195)
                t.setheading(0)
                t.forward(31)
                t.setheading(293)
                t.forward(196)
                t.end_fill()
                t.hideturtle()
                turtle.done()

 

Sun Turtle

 
                from turtle import *
                color('red', 'yellow')
                begin_fill()
                while True:
                    forward(200)
                    left(170)
                    if abs(pos()) < 1:
                        break
                end_fill()
                done()



 
...
...