🐍
美国队长的盾牌
import turtle

def circle(x,y,r,color):
    turtle.goto(x,y)
    turtle.color(color,color)
    turtle.begin_fill()
    turtle.circle(r)
    turtle.end_fill()
def wjx(x,y,l,color):
    turtle.goto(x,y)
    turtle.color(color, color)
    turtle.begin_fill()
 
    for i in range(5):
        turtle.forward(l)
        turtle.right(144)

    turtle.end_fill()


circle(0,-200,200,'red')
circle(0,-150,150,'white')
circle(0,-100,100,'red')
circle(0,-50,50,'blue')
wjx(-40,12,90,"white")

项目描述

由 百花 于 2020-10-28 创建
美国队长的盾牌
Python
数据分析
可视化
Tkinter
Pandas
Matplotlib

相关项目

美国队长的盾牌

美国队长的盾牌

游戏
2020-10-28

Python二叉树

美丽的二叉树,递归算法的经典应用

故事
2020-12-16

画五角星

游戏
2025-05-21

python画圣诞树

游戏
2026-01-08
评论 0
暂无评论...