摘要
按名称列出地理处理工具箱。
语法
ListToolboxes ({wild_card})
参数 | 说明 | 数据类型 |
wild_card | wild_card 可限制返回的结果。如果未指定任何 wild_card,则会返回所有值。 | String |
返回值
数据类型 | 说明 |
String | 该函数返回的列表包含受可选通配符限制的地理处理工具箱名称。 |
代码示例
ListToolboxes 示例
列出指定工具箱。
import arcpy
# Get and print a list of all toolboxes.
toolboxes = arcpy.ListToolboxes()
for toolbox in toolboxes:
print(toolbox)