Usage (arcpy)

摘要

返回特定工具或函数的语法。

讨论

完整的工具帮助信息(包括完整的参数描述)可使用 __doc__ 属性进行提取。

import arcpy
print(arcpy.Buffer_analysis.__doc__)

语法

Usage (tool_name)
参数说明数据类型
tool_name

The tool name to display the syntax.

String
返回值
数据类型说明
String

返回包含指定工具语法的字符串。

代码实例

使用示例

打印指定工具的语法。

import arcpy

print(arcpy.Usage("Buffer_analysis"))
print(arcpy.Usage("MakeFeatureLayer_management"))

相关主题

5/10/2014