摘要
返回地理处理工具列表。
语法
ListTools ({wild_card})
参数 | 说明 | 数据类型 | ||||||
wild_card | 限制返回的结果。如果未指定某一值,则返回所有值。通配符不区分大小写。
| String |
数据类型 | 说明 |
String | 该函数返回的列表包含受可选 wild_card 参数限制的地理处理工具名称。 |
代码示例
列出指定工具箱中的所有工具。
import arcpy
# Create a list of tools in the Analysis toolbox
tools = arcpy.ListTools("*_analysis")
# Loop through the list and print each tool's usage.
for tool in tools:
print(arcpy.Usage(tool))