Commit e5944de8 by BellCodeEditor

save project

parent de955228
Showing with 5 additions and 1 deletions
import turtle
p=turtle.Pen()
p.hideturtle()
for i in range(0,300,2):
screen=turtle.screen()
screen.bgcolor("black")
color=['green','red','blue','purple']
for i in range(300):
p.pencolor(color[i%4])
p.forward(i)
p.left(91)
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