一:用不同颜色绘制出同心圆
import turtle
t=turtle.Pen()
t.speed(4)
my_color=["green","red","yellow","black","gold"]
for x in range(5):
t.penup()
t.goto(0,-30*x)#画图的起始位置
#x%5是只有0 1 2 3 4
t.color(my_color[x%len(my_color)])
t.width(5)
t.pendown()
#半径
t.circle(30*(x+1))
#图像窗口保持不退
turtle.done()
结果显示:
二:画出18*18的棋盘
import turtle
t=turtle.Pen()
t.speed(20)
t.width(3)
for x in range(19):
#画横坐标的18条线,纵坐标范围为-180,180。纵坐标为(-180,180)
t.penup()
t.goto(-180,180-20*x)
t.pendown()
t.goto(180, 180 - 20 * x)
#画纵坐标的18条线
t.penup()
t.goto(-180+20*x, 180)
t.pendown()
t.goto(-180+20*x, -180)
turtle.done()
结果显示: