当前位置:   article > 正文

Python绘制奥运五环标记_python 环形图加标注

python 环形图加标注


通过绘制奥运五环标记的实例熟悉Python中的turtle绘图库运用

一、代码实现

1.根据坐标确定五环位置

#绘制奥运五环

#导入turtle库
import turtle

turtle.circle(50)

turtle.goto(120,0)

turtle.circle(50)

turtle.goto(240,0)

turtle.circle(50)

turtle.goto(60,-50)

turtle.circle(50)

turtle.goto(180,-50)

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

step001

2.增加笔迹填充颜色

#绘制奥运五环

#导入turtle库
import turtle
#设置笔迹宽度10px
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)

  • 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
  • 32
  • 33
  • 34
  • 35
  • 36

step002

二、总结

函数功能
turtle.circle()画圆,半径为正(负),表示圆心在画笔的左边(右边)画圆
turtle.goto(x,y)将画笔移动到坐标为x,y的位置
turtle.penup()提起笔移动,不绘制图形,用于另起一个地方绘制
turtle.pendown()移动时绘制图形,缺省时也为绘制
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/179840
推荐阅读
相关标签
  

闽ICP备14008679号