赞
踩
自学python的turtle库 花了一个小太阳花的图形
import turtle as t t.color("red", "yellow") t.speed(10) t.begin_fill() for x in range(50): t.forward(200) t.left(170) t.end_fill() t.done()