import turtle as t
#主体
t.pensize(50)
t.pencolor("green")
t.circle(50,-120)
t.pencolor("yellow")
t.circle(50,-120)
t.pencolor("red")
t.circle(50,-120)
#dot修正
t.penup()
t.circle(50,120)
t.pendown()
t.pencolor("yellow")
#t.dot(50)
t.circle(50,60)
t.penup()
t.circle(50,-120)
t.pendown()
t.pencolor()
t.color("red")
t.dot(50)
t.penup()
t.pencolor("green")
t.circle(50,-120)
t.pendown()
t.dot(50)
t.pencolor('green')
t.circle(50,-60)
#中间蓝圆
t.penup()
t.goto(0,50)
t.pendown()
t.pencolor("blue")
t.dot(52)
#结束
t.ht()
t.done()
最新推荐文章于 2024-09-08 19:36:13 发布