绘制谢尔宾斯基三角形
import turtle
# 绘制单个三角形
# [[x1,y1], [x2,y2], [x3,y3]]
def draw_triangle(points, color, t):
t.fillcolor(color)
t.up()
# 将画笔移动到第一个点
t.goto(points[0][0], points[0][1])
t.down()
t.begin_fill()
t.goto(points[1][0], points[1][1])
t.goto(points[2][0], points[2][1
1