鱼C论坛

 找回密码
 立即注册
查看: 1398|回复: 3

[作品展示] 用Python-turtle画的美队盾牌

[复制链接]
发表于 2022-1-29 21:36:23 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x

我用Python的turtle库,做了一个画美队盾牌的程序。(不喜勿喷 )
#导入turtle
import turtle as t

#设置速度
t.speed(0)

#画最低层的圆
t.goto(0,-200)
t.pendown() 
t.color('red')
t.begin_fill()
t.circle(200)
t.end_fill()

#画第2层的圆
t.penup()
t.goto(0,-150)
t.pendown() 
t.color('white')
t.begin_fill()
t.circle(150)
t.end_fill()

#画第3层的圆
t.penup()
t.goto(0,-100)
t.pendown() 
t.color('red')
t.begin_fill()
t.circle(100)
t.end_fill()

#画第4层的圆
t.penup()
t.goto(0,-50)
t.pendown() 
t.color('blue')
t.begin_fill()
t.circle(50)
t.end_fill()

#画五角星                                                                                                                                                                         
t.penup()
t.goto(-40,10)
t.pendown()

t.color('white')
t.begin_fill()

for i in range(5):
    t.forward(80)
    t.right(144)

t.end_fill()
t.hideturtle()
这是一个小学生写的程序,不喜勿喷 ,不要打负分

评分

参与人数 2荣誉 +5 鱼币 0 收起 理由
小伤口 + 5 + 5 感谢楼主无私奉献!
python爱好者. -5

查看全部评分

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-1-30 08:13:54 | 显示全部楼层
关键你的名字......让我忍不住想给你打负分—— "吃小甲鱼" ??? !!!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-2-8 10:46:14 | 显示全部楼层
建议可以贴一张效果图,加油!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-2-8 21:27:54 From FishC Mobile | 显示全部楼层
小伤口 发表于 2022-2-8 10:46
建议可以贴一张效果图,加油!

OK,当时没权限,谢谢
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-12 13:34

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表