使用turtle库绘制同心圆

import turtle as t
t.pensize(3)
t.setup(600,600,50,50)
t.pencolor("yellow")
t.penup()
t.pendown()
t.circle(80)
t.right(90)
t.penup()
t.fd(20)
t.seth(0)
t.pencolor("green")
t.pendown()
t.circle(100)
t.right(90)
t.penup()
t.fd(20)
t.seth(0)
t.pencolor("pink")
t.pendown()
t.circle(120)
t.right(90)
t.penup()
t.fd(20)
t.seth(0)
t.pencolor("black")
t.pendown()
t.circle(140)

  

posted @ 2020-03-15 13:57  可乐配牛奶  阅读(1999)  评论(0编辑  收藏  举报