Commit a5a40d67 by BellCodeEditor

save project

parent c0f9cad2
Showing with 22 additions and 0 deletions
import turtle
pen = turtle.Pen()
pen.goto(0,0)
pen.fillcolor("red")
pen.begin_fill()
pen.right(90)
for i in range(2):
pen.forward(200)
pen.right(90)
pen.end_fill()
pen.fillcolor("black")
pen.begin_fill()
for i in range(2):
pen.forward(200)
pen.right(90)
pen.end_fill()
pen.hideturtle()
turtle.done()
\ 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