📜  Python中的 turtle.getshapes()函数(1)

📅  最后修改于: 2023-12-03 15:04:34.424000             🧑  作者: Mango

Python中的 turtle.getshapes()函数

turtle.getshapes()是 Python turtle 模块中的一个函数,用于返回一组可用形状的名称。

语法
turtle.getshapes()
返回值

turtle.getshapes() 函数返回一个字符串列表,字符串表示可用的形状的名称,包括:

  • "arrow"

  • "turtle"

  • "circle"

  • "square"

  • "triangle"

  • "classic"

  • "star"

  • "turtle"

  • "arrow"

示例
import turtle

# 获取所有可用形状的名称
shapes = turtle.getshapes()

# 打印名称列表
print(shapes)

运行上述代码,将输出以下结果:

['arrow', 'turtle', 'circle', 'square', 'triangle', 'classic', 'star', 'turtle', 'arrow']
注意事项

在定义turtle形状时,应该使用 turtle.register_shape() 函数注册一个新形状,而非直接使用 turtle.getshapes() 返回的形状。

参考资料