Usage (arcpy)

Zusammenfassung

Returns the syntax for the specified tool or function.

Diskussion

Complete help information for a tool, including complete parameter descriptions, can be extracted by using the __doc__ property.

import arcpy
print(arcpy.Buffer_analysis.__doc__)

Syntax

Usage (tool_name)
ParameterErläuterungDatentyp
tool_name

The tool name to display the syntax.

String
Rückgabewert
DatentypErläuterung
String

Returns a string containing the specified tool's syntax.

Codebeispiel

Usage example

Print specified tool's syntax.

import arcpy

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

Verwandte Themen

4/26/2014