Commit ae2b6594 by BellCodeEditor

save project

parent 7e30e81f
Showing with 6 additions and 2 deletions
import turtle import turtle
pen=turtle.Pen() pen=turtle.Pen()
pen.speed(1000) screen=turtle.Screen()
for i in range(1,2000): screen.bgcolor("black")
colors=["red","orange","yellow","green"]
pen.speed(100)
for i in range(1,300):
pen.pencolor=colors[i%4]
pen.right(91) pen.right(91)
pen.forward(i) pen.forward(i)
pen.hideturtle() pen.hideturtle()
......
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