📜  如何在 python turtle 中制作星星 - Python 代码示例
📅  最后修改于: 2022-03-11 14:46:27.176000             🧑  作者: Mango
代码示例1
import turtle
t=turtle.Turtle()
for i in range(5):
t.begin_fill()
t.forward(75)
t.right(144)
t.end_fill()