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

Posted jimwis

tags:

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

import turtle        #调用turtle库绘制图像的函数库
turtle.color("blue") #颜色 蓝色
turtle.circle(100) #画半径100的圆

turtle.penup() #抬起笔
turtle.goto(-180,0) #移动到
turtle.pendown() #放笔
turtle.color("red") #颜色 红色
turtle.circle(100) #画半径100的圆


turtle.penup() #提起笔
turtle.goto(180,0) #移动到
turtle.pendown() #放下笔
turtle.color("yellow") #画黄色的圆
turtle.circle(100) #画半径100的圆

turtle.penup()
turtle.goto(80,-180)
turtle.pendown()
turtle.color("green")
turtle.circle(100)

turtle.penup()
turtle.goto(-80,-180)
turtle.pendown()
turtle.color("black")
turtle.circle(100)
turtle.done #让程序继续运行

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

Python绘制奥运五环

turtle库绘制奥运五环

Python的turtle库有啥用

Python 13分形树绘制1.0--五角星(turtle库)

Python内置turtle海龟库函数讲解1

python 相关语法 图形绘制 奥运五环