Commit 8c071cf2 by BellCodeEditor

save project

parent 094eee89
Showing with 5 additions and 4 deletions
import turtle import turtle
turtle.speed(0) turtle.speed(0)
turtle.bgcolor("light blue") turtle.bgcolor("black")
c=["red","orange","yellow","green"]
for d in range(1,1200): for i in range(1,1200):
turtle.forward(d) turtle.pencolor(c[i%4])
turtle.forward(i)
turtle.right(91) turtle.right(91)
......
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