Does anyone know of a quick way to return the number of records in a query constrained Search Cursor using the da module?
Code:
rows = arcpy.da.SearchCursor(someFC,someFields,someQuery)
print (len(rows)) #I'm sure this used to work with the old cursors, but doesn't work with da.SearchCursor