概要
Returns the syntax for the specified tool or function.
ディスカッション
Complete help information for a tool, including complete parameter descriptions, can be accessed using the Python help function.
import arcpy
help(arcpy.Buffer_analysis)
構文
Usage (tool_name)
パラメーター | 説明 | データ タイプ |
tool_name | The tool name to display the syntax. | String |
戻り値
データ タイプ | 説明 |
String | Returns a string containing the specified tool's syntax. |
コードのサンプル
Usage example
Print the specified tool's syntax.
import arcpy
print(arcpy.Usage("Buffer_analysis"))
print(arcpy.Usage("MakeFeatureLayer_management"))