Commit 4069b058 by BellCodeEditor

save project

parent f4c6af50
Showing with 10 additions and 0 deletions
""" """
请使用turtle模块画出五角星 请使用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