Commit f8a64fa4 by BellCodeEditor

auto save

parent 02ac2309
Showing with 1 additions and 12 deletions
import turtle
pen = turtle.Pen()
screen=turtle.Screen()
screen.bgcolor("black")
color = ["red","yellow","blue","green"]
for i in range(800):
pen.color(color[i%4])
pen.fd(i)
pen.rt(5000)
pen.speed(i)
turtle.hideturtle()
turtle.done()
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