Commit 153d9367 by BellCodeEditor

save project

parent eea74619
Showing with 10 additions and 9 deletions
"""
请使用turtle模块画出五角星
"""
import turtle
pen = turtle.Pen()
pen.fillcolor("red")
pen.begin_fill()
for i in range(5):
pen.forward(150)
pen.left(144)
import turtle #导入海龟模块库
turtle.done()
\ No newline at end of file
pen = turtle.Pen() #创建画笔
pen.fillcolor("red") #填充颜色
pen.begin_fill() #开始填充颜色
for i in range(5): #重复画五次
pen.forward(150) #每次画的长度为150
pen.left(144) #左转144
pen.end_fill() #结束填充
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