合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
#### 1.绘制三角形 使用 turtle 库的 turtle.fd() 函数和 turtle.seth() 函数绘制一个等边三角形,边长为 200 像素,效果如下图所示。 ![](http://h.yiniuedu.com/47e008768a931c9b09c6799a02d584cf) 方法一: ``` import turtle as t for i in range(3): t.seth(i\*120) t.fd(200) t.done() ``` 方法二: ``` from turtle import * for i in range(3): fd(180) left(120) done() ```