美国队长之盾画法

美国队长之盾画法

李兴球Python美国队长之盾
李兴球Python美国队长之盾

李兴球Python美国队长之盾

"""
   美国队长之盾.py
   本程序会画漫威动画里面的美国队长使用的盾牌
"""
import turtle

def draw_star(d):
    for _ in range(5):
        turtle.fd(d)
        turtle.rt(144)

turtle.dot(200,'red')
turtle.dot(170,'white')
turtle.dot(130,'red')
turtle.dot(90,'blue')

turtle.penup()
turtle.speed(0)
turtle.hideturtle()
turtle.fillcolor('white')
turtle.goto(-42,12)
turtle.begin_fill()
draw_star(83)
turtle.end_fill()
turtle.done()

李兴球

李兴球的博客是Python创意编程原创博客

评论已关闭。