Commit 910f6276 by BellCodeEditor

save project

parent 34ac1709
Showing with 19 additions and 1 deletions
import turtle import turtle
turtle.hideturtle()
turtle.speed(0) turtle.speed(0)
for i in range(0,200000): screen=turtle.Screen()
screen.bgcolor("black")
www=['red','blue','purple','yellow']
for i in range(0,300):
turtle.pencolor(www[i%4])
turtle.forward(i)
turtle.right(91)
turtle.done()
import turtle
turtle.goto(0,5)
turtle.hideturtle()
turtle.speed(0)
screen=turtle.Screen()
screen.bgcolor("black")
www=['red','blue','purple','yellow']
for i in range(0,300):
turtle.pencolor(www[i%4])
turtle.forward(i) turtle.forward(i)
turtle.right(91) turtle.right(91)
turtle.done() turtle.done()
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment