Commit b40fd406 by BellCodeEditor

save project

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