GetMessage (arcpy)

摘要

按地理处理工具消息的索引位置返回该消息。

语法

GetMessage (index)
参数说明数据类型
index

The message to retrieve.

Integer
返回值
数据类型说明
String

地理处理工具消息。

代码实例

GetMessage 示例

返回指定的地理处理消息。

import arcpy

fc = arcpy.GetParameterAsText(0)

arcpy.GetCount_management(fc)

# Print the first and last message returned by the last
#  tool executed (GetCount)
message_count = arcpy.GetMessageCount()
print(arcpy.GetMessage(0))
print(arcpy.GetMessage(message_count - 1))

相关主题

5/10/2014