当前位置:   article > 正文

Python01利用turtle画五环_使用turtle库绘制下面的五行圆圈图案

使用turtle库绘制下面的五行圆圈图案
import turtle
turtle.width(10) #设置线粗细
#第一个圆
turtle.color("red")#颜色
turtle.circle(50)#圆半径
#第二个圆
turtle.penup()#抬笔
turtle.goto(120,0)#到达相应坐标点
turtle.pendown()#放下笔画线
turtle.color("blue")
turtle.circle(50)
#第三个圆
turtle.penup()
turtle.goto(240,0)
turtle.pendown()
turtle.color("black")
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)
import turtle
turtle.width(10) #设置线粗细
#第一个圆
turtle.color("red")#颜色
turtle.circle(50)#圆半径
#第二个圆
turtle.penup()#抬笔
turtle.goto(120,0)#到达相应坐标点
turtle.pendown()#放下笔画线
turtle.color("blue")
turtle.circle(50)
#第三个圆
turtle.penup()
turtle.goto(240,0)
turtle.pendown()
turtle.color("black")
turtle.circle(50)
#第四个圆
turtle.penup()
turtle.goto(60,-50)
turtle.pendown()
turtle.color("yellow")
turtle.circle(50)
#第五个圆
turtle.penup()
t
  • 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
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号