Commit b9ab56fb by BellCodeEditor

save project

parent a50ceeec
Showing with 16 additions and 0 deletions
import turtle
turtle.screensize(400,300,"black")
pen = turtle.Pen()
pen.speed(100)
pen.shape("turtle")
color_list = ["blue","yellow","cyan","pink","orange","gold","green","purple","red"]
for times in range (500):
pen.forward(times)
pen.pencolor(color_list[times % 9])
pen.right(91)
pen.hideturtle()
turtle.done()
j = 1
i = 1
\ No newline at end of file
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