Commit bdac8635 by BellCodeEditor

auto save

parent e531aa94
Showing with 8 additions and 2 deletions
......@@ -3,9 +3,14 @@
"""
import turtle
pen=turtle.Pen()
for i in range(5):
pen.color("red")
pen.fillcolor("red")#设置填充颜色
pen.speed(100)
pen.begin_fill()#开始填充
for i in range(36):
pen.forward(200)
pen.right(144)
pen.right(175)
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