吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 2497|回复: 13
收起左侧

[Python 转载] 用小乌龟画奥运五环

[复制链接]
老冉 发表于 2022-2-9 12:27
本帖最后由 老冉 于 2022-2-9 12:58 编辑

[Python] 纯文本查看 复制代码
import turtle as tt


def five():
    tt.bgcolor('lightblue')
    tt.pensize(8)
    # 蓝色环
    tt.pencolor("blue")
    tt.penup()
    tt.goto(-120, 60)
    tt.pendown()
    tt.circle(50)
    # 黑色环
    tt.pencolor("black")
    tt.penup()
    tt.goto(0, 60)
    tt.pendown()
    tt.circle(50)
    # 红色环
    tt.pencolor("red")
    tt.penup()
    tt.goto(120, 60)
    tt.pendown()
    tt.circle(50)
    # 黄色环
    tt.pencolor("yellow")
    tt.penup()
    tt.goto(-60, 0)
    tt.pendown()
    tt.circle(50)
    # 绿色环
    tt.pencolor("green")
    tt.penup()
    tt.goto(60, 0)
    tt.pendown()
    tt.circle(50)

    tt.penup()
    tt.pencolor("black")
    tt.goto(-120, 180)
    tt.write("BEIJING  2022", font=('Arial', 28, 'bold italic'))
    

def overlap():
    #重叠, 红跨绿色
    tt.penup()
    tt.pencolor('red')
    tt.goto(120, 60)
    tt.pendown()
    tt.circle(50, -45)
    #重叠, 黑跨黄、绿色
    tt.penup()
    tt.pencolor('black')
    tt.seth(0)
    tt.goto(0, 60)
    tt.pendown()
    tt.circle(50, -45)
    tt.penup()
    tt.circle(50, 90)
    tt.pendown()
    tt.circle(50, 90)
    #重叠, 蓝跨黄色
    tt.penup()
    tt.pencolor('blue')
    tt.seth(-90)
    tt.goto(-70, 110)
    tt.pendown()
    tt.circle(-50, 45)
    tt.hideturtle()
              

if __name__ == "__main__":
    five()
    overlap()


olympic.png

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

 楼主| 老冉 发表于 2022-2-10 12:39
gzq830510 发表于 2022-2-10 08:32
前几天刚教孩子用scratch画过这个,两个思路,一个是楼主这样把重叠部分重新描一遍,还有一个思路是5个画笔 ...

学习了,赞一个!
wan456 发表于 2022-2-9 15:52
shiyuyingxiang 发表于 2022-2-9 15:16
的确上学的时候学的就是DOS小乌龟画图

有年代感了,感觉暴露年龄了,又有多少人在校没学过计算机
gao834010024 发表于 2022-2-9 14:30
FBIleon 发表于 2022-2-9 15:07
好像,我小学的时候学的是这个
shiyuyingxiang 发表于 2022-2-9 15:16
的确上学的时候学的就是DOS小乌龟画图
WX2886 发表于 2022-2-9 15:27
感谢大佬分享
Fisces 发表于 2022-2-9 15:46
有点当年用Logo语言画图的味道
秋叶秋 发表于 2022-2-9 16:07

很赞 很有意义
shubiao05 发表于 2022-2-9 16:23
执行了一下,成功。
附图
奥运五环.jpg
oahzuw 发表于 2022-2-9 16:32
计算位置看着就麻烦
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 09:35

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

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