Commit f19d9c75 by BellCodeEditor

auto save

parent 623fb1a6
Showing with 17 additions and 0 deletions
""" """
请使用turtle模块画出五角星 请使用turtle模块画出五角星
""" """
#导入模块
import turtle
#创建画笔 赋值给变量
hb = turtle.Pen()
#创作
hb.goto(-100,0)
for a in range(5):
hb.forward(500)
hb.right(144)
#隐藏、显示画笔
hb.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