Commit fd298e09 by BellCodeEditor

auto save

parent 49aea075
Showing with 13 additions and 6 deletions
"""
请使用turtle模块画出五角星
"""
import turtle as t
p = t.Pen()
p.hideturtle()
for i in range(4):
\ No newline at end of file
import turtle #导入海龟模块
pen = turtle.Pen() #设置画笔
turtle.tracer(0) #设置屏幕刷新率
pen.speed(0) #设置画笔速度
pen.hideturtle() #隐藏画笔
pen.fillcolor("yellow") #设置填充颜色:黄色
pen.begin_fill() #开始填充
for i in range(1000): #重复5次
pen.forward(i) #移动100步
pen.right(109) #右转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