画金色五角星代码如下:
from turtle import * color("red","red") begin_fill() pensize(3) for i in range(5): forward(100) right(144) end_fill() done()
用for更合适一些,时间空间性价比更高