Commit bf2a0fc4 by BellCodeEditor

save project

parent 0f322d52
Showing with 4 additions and 0 deletions
import turtle
p=turtle.Pen()
s=turtle.Screen()
c=["red","blue","green","yellow"]
s.bgcolor("black")
for i in range(500):
p.pencolor(c[i%4])
p.forward(i)
p.right(91)
p.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