Commit 73390e76 by BellCodeEditor

auto save

parent fa0dff60
Showing with 13 additions and 0 deletions
"""
请使用turtle模块画出五角星
"""
import turtle #导入模块
pen=turtle.Pen()#调用画笔
pen.shape("turtle")#设成海龟
for i in range(5):
pen.left(144)
pen.forward(200)#移动100
#左转
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