Turtle画五角星

from turtle import *#导入海龟画图
title('绘制五角星')#写标题
bgcolor('red')#确定背景色
pensize(7)#确定画笔粗细
ht()#隐藏画笔,提高速度
begin_fill()#开始填充
color('black','yellow')#确定画笔颜色和填充颜色
for i in range(5):#五次循环 
    pendown()#落下画笔
    forward(300)#移动300像素
    left(144)#左转144°
    penup()#抬笔
end_fill()#结束填充

猜你喜欢

转载自blog.csdn.net/weixin_43115314/article/details/114181030
今日推荐