Commit 439e5b0e by BellCodeEditor

save project

parent 4541ab35
Showing with 17 additions and 0 deletions
#导入库
import turtle
#设置画笔
P = turtle.Pen()
#设置填充的颜色
P.fillcolor("red")
#开始填充颜色
P.begin_fill()
#画出五角星
for i in range(5):
P.forward(200)
P.right(144)
#结束填充颜色
P.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