绘制奥运大五环

Posted

tags:

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

绘制奥运五环


# 绘制奥运五环
import turtle
turtle.width(10)

turtle.color("blue")
turtle.circle(50)
turtle.penup()
turtle.goto(120,0)
turtle.pendown()

turtle.color("black")
turtle.circle(50)
turtle.penup()
turtle.goto(240,0)
turtle.pendown()

turtle.color("red")
turtle.circle(50)
turtle.penup()
turtle.goto(60,-50)
turtle.pendown()

turtle.color("yellow")
turtle.circle(50)
turtle.penup()
turtle.goto(180,-50)
turtle.pendown()

turtle.color("green")
turtle.circle(50)

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

Python绘制奥运五环

turtle库绘制奥运五环

Python绘制奥运五环

OpenCV-绘制奥运五环(带套接效果)

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

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