python turtle库画图,setch函数里面数值什么含义,作图起始点的方向如何设定。
import turtle as tt tt.pensize(2) d = -45 for i in range(4): tt.seth(d) d += 90 tt.fd(200)