当前位置:   article > 正文

使用python编程实现绘制奥运五环图_pythonj五环加字

pythonj五环加字

程序

主要是通过导入turtle包,turtle包是python中很流行的绘制图形的函数库。

#绘制五环

import turtle     #导入turtle模块
turtle.width(10)  #线的宽度
turtle.color("blue")  #环的颜色
turtle.circle(50) #环的半径

turtle.penup()         #把画笔抬起,不画
turtle.goto(120,0)     #笔移动到(120,0)的坐标位置
turtle.pendown()       #开始画
turtle.color("black")  #环的颜色
turtle.circle(50) #环的半径

turtle.penup()         #把画笔抬起,不画
turtle.goto(240,0)     #笔移动到(240,0)的坐标位置
turtle.pendown()       #开始画
turtle.color("red")  #环的颜色
turtle.circle(50) #环的半径

turtle.penup()         #把画笔抬起,不画
turtle.goto(60,-50)     #笔移动到(120,0)的坐标位置
turtle.pendown()       #开始画
turtle.color("yellow")  #环的颜色
turtle.circle(50) #环的半径

turtle.penup()         #把画笔抬起,不画
turtle.goto(180,-50)     #笔移动到(120,0)的坐标位置
turtle.pendown()       #开始画
turtle.color("green")  #环的颜色
turtle.circle(50) #环的半径

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

运行结果

在这里插入图片描述

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号