Commit f90daff5 by BellCodeEditor

save project

parent 331916e9
Showing with 13 additions and 1 deletions
# 导入模块
import turtle
# 创建画笔
pen = turtle.Pen()
# for循环 画五角星
for i in range(5):
# 移动
pen.forward(200)
# 右转
pen.right(144)
# 隐藏
pen.hideturtle()
turtle.done()
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