Commit b40fd406 by BellCodeEditor

save project

parent 484ec637
Showing with 9 additions and 9 deletions
"""
请使用turtle模块画出五角星
"""
import turtle
P=turtle.Pen()
P.shape("turtle")
for i in range(5):
P.forword(200)
P.right(144)
pen.hideturtle()
turtle.done()
\ No newline at end of file
import turtle #导入库
pen=turtle.Pen() #设置画笔
pen.shape("turtle") #设置画笔形状图标
for i in range(5): #循环画图
pen.forward(200) #移动200步
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