摘要
按地理处理工具消息的索引位置返回该消息。
语法
GetMessage (index)
参数 | 说明 | 数据类型 |
index | 要检索的消息。 | Integer |
数据类型 | 说明 |
String | 地理处理工具消息。 |
代码示例
返回指定的地理处理消息。
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))