Commit ebb0a6c6 by BellCodeEditor

auto save

parent b3c0e21b
Showing with 14 additions and 0 deletions
import turtle
"""画出五角星,上色"""
pen=turtle.Pen()
pen.fillcolor("red")#设置画笔填充颜色
pen.begin_fill()#开始填充
for i in range(5):
pen.forward(200)
pen.right(144)
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