描述
按指定的严重性级别从工具返回地理处理消息。
语法
GetMessages ({severity})
参数 | 说明 | 数据类型 |
severity | 指定要返回的消息的严重性级别。
如果未指定严重性级别,将返回所有类型的消息。 (默认值为 0) | Integer |
数据类型 | 说明 |
String | 多个地理处理工具消息由换行符 ('\n') 分隔。 |
代码示例
返回地理处理消息。
import arcpy
fc = arcpy.GetParameterAsText(0)
arcpy.GetCount_management(fc)
# Print all of the geoprocessing messages returned by the
# last tool (GetCount)
print(arcpy.GetMessages())