Commit 09871213 by BellCodeEditor

auto save

parent 5b9a8767
Showing with 29 additions and 0 deletions
import turtle
p=turtle.Pen()
s=turtle.Screen()
s.bgcolor("black")
colors=["red","orange","yellow","green"]
pen.speed(1000)
for i in range(1,300):
pen.pencolor(colors[i%4])
p.forward(i)
p.right(91)
p.hideturtle()
turtle.done()
\ No newline at end of file
import turtle
p=turtle.Pen()
p.speed(100)
p.shape("turtle")
p.fillcolor("red")
p.begin_fill()
for i in range(5):
p.forward(200)
p.right(144)
p.end_fill()
p.hideturtle()
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