python2.7绘制五角星

2025-01-08 12:17:33
推荐回答(1个)
回答1:

要设置填充色,t.fillcolor("red")

import turtle


t = turtle.Turtle()
t.fillcolor("red")
t.begin_fill()
t.hideturtle()
t.up()
t.goto(-50, -50)
t.left(36)
t.down()
for i in range(5):
    t.forward(200)
    t.left(144)
t.end_fill()