摘要: import turtle def draw(points): # 根据三个坐标,画一个三角形 t.penup() t.goto(points['left']) t.pendown() t.goto(points['top']) t.goto(points['right']) t.goto(poin 阅读全文
posted @ 2020-05-29 22:58 wztshine 阅读(1855) 评论(0) 推荐(0) 编辑