Commit 5c344972 by BellCodeEditor

auto save

parent ec5a7da1
Showing with 15 additions and 0 deletions
#导入库
import turtle
#创建画笔
p = turtle.Pen()
#设置画笔形状
p.shape('turtle')
#画五角星
for i in range(5):
p.forward(200)
p.right(144)
#隐藏画笔
p.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