Commit 04dab81a by BellCodeEditor

save project

parent ebe75bc0
Showing with 38 additions and 0 deletions
import turtle
pen=turtle.Pen()
pen.shape('turtle')
pen.fillcolor("yellow")
pen.penup()
pen.goto(-200,200)
pen.pendown()
pen.begin_fill()
for i in range(135):
pen.forward(100)
pen.right(33)
pen.end_fill()
wait(10)
turtle.dowe()
import turtle
import turtle
pen=turtle.Pen()
pen.shape('turtle')
pen.penup()
pen.goto(-200,200)
pen.pendown()
for i in range(1000):
pen.forward(400)
pen.left(125)
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