赞
踩
我们已经学会了绘制简单的图, 本期开始,我们将学习如何用turtle库制作动画.
# 画三分之一的雪 def koch_1(size, n): if n == 0: turtle.fd(size) else: for angle in [0, 60, -120