📅  最后修改于: 2023-12-03 15:04:34.424000             🧑  作者: Mango
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()
返回的形状。