Commit c180647f by BellCodeEditor

auto save

parent 623fb1a6
Showing with 12 additions and 0 deletions
"""
请使用turtle模块画出五角星
"""
import turtle #导入turtle模块
pen=turtle.Pen() #创建画笔pen
#pen.shape("turtle") #设置画笔形状为turtle(海龟)
for i in range(5): #重复执行五次
pen.forward(100) #画笔前进100步
pen.right(144) #画笔右转144度
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