利用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函数库 绘制奥运五环。的主要内容,如果未能解决你的问题,请参考以下文章