python利用turtle绘制同心圆

绘制同心圆

程序如下

import turtle as t
t.setup(650,650)
t.pencolor("green")
t.pensize(2.5)
t.penup()
t.fd(50)
t.pendown()
t.left(90)
t.circle(50,360)
t.right(90)
t.penup()
t.fd(20)
t.pendown()
t.left(90)
t.circle(70,360)
t.right(90)
t.penup()
t.fd(20)
t.pendown()
t.left(90)
t.circle(90,360)
t.right(90)
t.penup()
t.fd(20)
t.pendown()
t.left(90)
t.circle(110,360)
t.right(90)
t.penup()
t.fd(20)
t.pendown()
t.left(90)
t.circle(130,360)
t.done()

运行结果

python利用turtle绘制同心圆_第1张图片

你可能感兴趣的:(python利用turtle绘制同心圆)