在 Python 中创建 turtle 形状
Preet Sanghavi
2022年5月18日
本教程解释了如何使用 turtle
库并在 Python 中创建不同的形状。我们首先导入 turtle
库。
在 Python 中使用 turtle.shape()
函数创建形状
进口乌龟
:
import turtle
Turtle
库需要安装 Python 版本,支持 Tkinter
库,因为它使用 Tk
作为底层图形。
我们将在这里使用 turtle.shape()
函数将 turtle 形状设置为具有给定名称的形状。给定的形状名称必须存在于 Turtle Screen 的形状库中。
我们可以在圆形、方形、乌龟、箭头、三角形和经典之间进行选择。
现在让我们开始使用 turtle.shape()
函数。
turtle.forward(70)
turtle.shape("circle")
turtle.right(60)
turtle.forward(100)
turtle.shape("arrow")
turtle.right(60)
turtle.forward(100)
在上面的代码中,我们首先创建了默认形状。然后分别是圆形和箭头形状。
让我们在下面看看上面代码的输出。
我们已经使用上面的代码成功地创建了 turtle 形状。因此,我们可以使用上述方法成功创建形状。
Author: Preet Sanghavi