Python绘制奥运五环

Posted liaozhidan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python绘制奥运五环相关的知识,希望对你有一定的参考价值。

import turtle as t
def pic(color,x,y,r):
    t.width(10)
    t.color(color)
    t.penup()
    t.goto(x,y)
    t.pendown()
    t.circle(r)
    t.hideturtle()
if __name__ == "__main__":
    pic("blue",-180,0,50)
    pic("black",-60,0,50)
    pic("red",60,0,50)
    pic("yellow",-120,-50,50)
    pic("green",0,-50,50)
    t.penup()
    t.goto(-90,-80)
    t.pendown()
    t.color("red")
    t.write("奥运五环")
    t.done()

效果图:

技术图片

以上是关于Python绘制奥运五环的主要内容,如果未能解决你的问题,请参考以下文章

Python绘制奥运五环

Python 学习记录----利用Python绘制奥运五环

利用Python 调用turtle函数库 绘制奥运五环。

python中最简单的turtle绘图:奥运五环

绘制奥运大五环

turtle库绘制奥运五环