如何用turtle 画一般椭圆
时间: 2023-02-27 21:42:54 浏览: 102
使用Python的turtle模块画图
你可以通过调整turtle的形状参数来画椭圆。可以用 "turtle.shape("turtle")" 设置 turtle 的形状,然后通过调整其纵横比例参数(stretch_wid, stretch_len)来调整形状。例如,设置 "turtle.shapesize(stretch_wid=3, stretch_len=2)" 就可以画出一个长宽比为 3:2 的椭圆。
具体代码如下:
```
import turtle
turtle.shape("turtle")
turtle.shapesize(stretch_wid=3, stretch_len=2)
turtle.penup()
turtle.goto(100, 50)
turtle.pendown()
turtle.circle(20)
turtle.done()
```
阅读全文