Commit 9766ab7b by BellCodeEditor

save project

parent 3058b439
Showing with 6 additions and 1 deletions
......@@ -4,7 +4,12 @@
"""
import turtle
Pen=turtle.Pen()
for i in range(1,300)
screen=turtle.Pen()
screen.bgcolor("black")
color=("red","orange","green","yellow")
for i in range(1,300):
Pen.pencolor(color[i%4])
Pen.forword(i)
Pen.right(91)
......
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