Commit f21f8d25 by BellCodeEditor

save project

parent 454f94ce
Showing with 2 additions and 2 deletions
...@@ -3,10 +3,10 @@ pen=turtle.Pen() ...@@ -3,10 +3,10 @@ pen=turtle.Pen()
sides=7 sides=7
pen.penup() pen.penup()
color=['red','blue','yellow','green','white','black','orange'] color=['red','blue','yellow','green','white','black','orange']
pen.bgcolor(black) bgcolor('black')
for i in range(360): for i in range(360):
pen.right(20) pen.right(20)
pen.color(color%2) pen.pencolor(color%2)
pen.forward(100) pen.forward(100)
pen.done() pen.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