Commit 225b0519 by BellCodeEditor

auto save

parent 5dbae720
Showing with 12 additions and 11 deletions
import turtle import turtle
pen = turtle.pen()
pen.fillcolor("red") pen = turtle.Pen()
for i in range(3) pen.fillcolor("red")
pen.forward(200) pen.begin_fill()
pen.right(120) for i in range(5):
turtle.done() pen.forward(200)
pen.begin_fill() pen.right(144)
pen.end_fill() pen.hideturtle()
pen.end_fill()
\ No newline at end of file pen.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