标注 | 说明 | 数据类型 |
输入行 | 输入表视图或栅格图层。如果对输入定义了选择内容,则只会返回所选行的计数。 | Table View; Raster Layer |
派生输出
标注 | 说明 | 数据类型 |
行计数 | 输入的总行数。 | 长整型 |
返回表的总行数。
标注 | 说明 | 数据类型 |
输入行 | 输入表视图或栅格图层。如果对输入定义了选择内容,则只会返回所选行的计数。 | Table View; Raster Layer |
标注 | 说明 | 数据类型 |
行计数 | 输入的总行数。 | 长整型 |
arcpy.management.GetCount(in_rows)
名称 | 说明 | 数据类型 |
in_rows | 输入表视图或栅格图层。如果对输入定义了选择内容,则只会返回所选行的计数。 | Table View; Raster Layer |
名称 | 说明 | 数据类型 |
row_count | 输入的总行数。 | 长整型 |
以下 Python 窗口脚本演示了如何在即时模式下使用 GetCount 函数。
import arcpy
arcpy.env.workspace = "C:/data/data.gdb"
arcpy.GetCount_management("roads")
下面的独立脚本演示了如何在脚本环境中使用 GetCount 函数。
# Name: fcCount.py
# Purpose: calculate the number of features in a feature class
# Import system modules
import arcpy
lyrfile = r"C:\data\streets.lyr"
result = arcpy.GetCount_management(lyrfile)
print('{} has {} records'.format(lyrfile, result[0]))