Commit 2058207e by BellCodeEditor

save project

parent 2a783d19
Showing with 34 additions and 0 deletions
import turtle
pen=turtle.Pen()
pen.fillcolor("blue")
pen.begin_fill()
for i in range(5):
pen.forward(200)
pen.right(144)
pen.end_fill()
turtle.done()
\ No newline at end of file
import turtle
pen=turtle.Pen()
pen.fillcolor("yellow")
pen.begin_fill()
for i in range(10):
pen.forward(100)
pen.right(160)
pen.end_fill()
pen.hideturtle()
turtle.done()
\ No newline at end of file
import turtle
pen=turtle.Pen()
pen.shape("turtle")
pen.fillcolor("white")
pen.begin_fill()
pen.left(180)
for i in range(270):
pen.forward(1)
pen.left(1)
for i in range(270):
pen.forward(1)
pen.right(1)
\ 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