描述
返回表的总行数。
使用方法
语法
arcpy.management.GetCount(in_rows)
参数 | 说明 | 数据类型 |
in_rows | 输入表视图或栅格图层。如果对输入定义了选择内容,则只会返回所选行的计数。 | Table View; Raster Layer |
派生输出
名称 | 说明 | 数据类型 |
row_count | 输入的总行数。 | 长整型 |
代码示例
获取计数 (GetCount) 示例 1(Python 窗口)
以下 Python 窗口脚本演示了如何在即时模式下使用 GetCount 函数。
import arcpy
arcpy.env.workspace = "C:/data/data.gdb"
arcpy.GetCount_management("roads")
获取计数 (GetCount) 示例 2(独立脚本)
下面的独立脚本演示了如何在脚本环境中使用 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]))
环境
许可信息
- Basic: 是
- Standard: 是
- Advanced: 是