Python turtle库绘制菱形的3种方式小结
时间:2020-11-23 12:17:02|栏目:Python代码|点击: 次
绘制一个菱形四边形,边长为 200 像素。方法1和2绘制了内角为60和120度的菱形,方法3绘制了内角为90度的菱形。
方法1
import turtle as t ls = [30,-30,-150,150]#菱形各边的画笔绝对角度列表 for i in range(4): t.seth(ls[i]) #画笔转向相应绝对角度 t.forward(200) t.done()
方法2
import turtle as t t.right(-45) #起始顶点绝对角度设为正30度 for i in range(4): #画4边,转向4次 t.fd(200) degree = 60*(1+i%2) #其他3顶点右转角度分别为60、120、60度 t.right(degree) t.done()
效果图如下:
方法3
import turtle as t t.circle(200,steps=4) #circle(r,steps)函数画半径为r圆的内切steps边形
效果图如下: