Commit 8e3694b2 by BellCodeEditor

auto save

parent 32589ff7
Showing with 22 additions and 0 deletions
This diff is collapsed. Click to expand it.
import turtle
pen = turtle.Pen()
pen.penup()
pen.goto(0,0)
pen.pendown()
pen.pencolor('gold')
pen.fillcolor('gold')
for i in range(12):
pen.begin_fill()
pen.circle(120,30)
pen.right(60)
pen.forward(80)
pen.right(60)
pen.forward(80)
pen.right(120)
pen.forward(80)
pen.right(60)
pen.forward(80)
pen.right(60)
pen.end_fill()
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