画美国队长盾牌代码
2021-07-18 12:04 作者:Gugyvyftxtcy | 我要投稿
import turtle
turtle.dot(200,"red")
turtle.dot(160,"white")
turtle.dot(120,"red")
turtle.dot(80,"blue")
turtle.penup()
turtle.goto(-35,12)
turtle.pendown()
turtle.pencolor("white")
turtle.begin_fill()
turtle.fillcolor("white")
for i in range(5):
turtle.forward(70)
turtle.right(144)
turtle.end_fill()
turtle.done()

