📜  Python中的 turtle.getshapes()函数

📅  最后修改于: 2022-05-13 01:55:34.708000             🧑  作者: Mango

Python中的 turtle.getshapes()函数

turtle 模块以面向对象和面向过程的方式提供海龟图形原语。因为它使用 Tkinter 作为底层图形,所以它需要安装一个支持 Tk 的Python版本。

海龟.getshapes()

此函数用于返回所有当前可用海龟形状的名称列表。它不需要任何论据。

句法 :

turtle.getshapes()

以下是上述方法的实现以及一些示例:

示例 1:

Python3
# import package
import turtle
print(turtle.getshapes())


Python3
# import package
import turtle
shapes = turtle.getshapes()
  
  
# set speed to slowest
turtle.speed(1)
  
# draw all shapes
for i in range(len(shapes)):
    
  # shape
  turtle.shape(shapes[i])
    
  # motion
  turtle.forward(100)
  turtle.right(51.42)
  turtle.stamp()


输出 :

['arrow', 'blank', 'circle', 'classic', 'square', 'triangle', 'turtle']

示例 2:

Python3

# import package
import turtle
shapes = turtle.getshapes()
  
  
# set speed to slowest
turtle.speed(1)
  
# draw all shapes
for i in range(len(shapes)):
    
  # shape
  turtle.shape(shapes[i])
    
  # motion
  turtle.forward(100)
  turtle.right(51.42)
  turtle.stamp()

输出 :