from turtle import * color('red','yellow') begin_fill() while True: forward (200) left(170) if abs(pos())<1: break end_fill() done()意思
时间: 2024-04-03 12:35:58 浏览: 102
用颜色填充
这段代码使用Python中的turtle库来绘制一个红色外边框和黄色填充的星形图案。具体的实现方法是:先调用color()函数设置画笔颜色和填充颜色,然后调用begin_fill()函数开始填充,进入循环,每次向前移动200个像素并左转170度,直到当前位置到原点的距离小于1个像素,然后跳出循环,调用end_fill()函数结束填充,最后调用done()函数完成绘制。
阅读全文