Commit ccb9647b by BellCodeEditor

save project

parent 8e554ac1
Showing with 10 additions and 8 deletions
import turtle
pen = turtle.Pen()
pen.speed(0)
for i in range(1,300):
pen.fd(i)
pen.right(91)
pen.hideturtle()
#,"blue","purple"
import turtle
turtle.speed(0)
turtle.bgcolor("black")
A = ["red","orange","yellow","green","cyan",]
for i in range(1,500):
turtle.color(A[i%5])
turtle.fd(i)
turtle.right(145)
turtle.done()
\ 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