Python里的circle能画线段吗,能画的话circle里值应该怎么写,我试过零好像不可以
可以指定角度,绘制一条弧线。可以参考博文https://blog.csdn.net/tscaxx/article/details/102984398
import turtle as t t.circle(100,90) t.exitonclick()