我想制作一个在绘制时逐渐改变颜色的图案,如下所示:#by the way this is in a loopturtle.fd(100)turtle.rt(30)turtle.fd(50)turtle.penup()turtle.goto(0,0)turtle.pendown()turtle.rt(3)#something here to change the color a little bit没有颜色,这仍然是一个很酷的图案,但我想知道如何使颜色逐渐从红色变为黄色,再到绿色和蓝色,然后最终变回红色。
1 回答
梵蒂冈之花
TA贡献1900条经验 获得超5个赞
import turtle
color = ['red','yellow','green','blue']
for i in range(100):
#by the way this is in a loop
turtle.color(color[i%4])
turtle.fd(100)
turtle.rt(30)
turtle.fd(50)
turtle.penup()
turtle.goto(0,0)
turtle.pendown()
turtle.rt(3)
#something here to change the color a little bit
这是一个不错的选择
- 1 回答
- 0 关注
- 117 浏览
添加回答
举报
0/150
提交
取消