其他分享
首页 > 其他分享> > 使用turtle库绘制同心圆

使用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)

  

标签:turtle,right,20,penup,pencolor,同心圆,pendown,circle,绘制
来源: https://www.cnblogs.com/cnn-ljc/p/12497288.html