for codes in Adj_Neighbors
for row2 in arcpy.SearchCursor(Adj_Neighbors): GCA_List.append(row2.getValue("Grid_Code"))
GCA_List = [r.getValue('ELEVATION') for r in arcpy.SearchCursor('shp_lyr')]
cur = arcpy.UpdateCursor(shp) row = cur.next() while row: ... row = cur.next()
for row in arcpy.SearchCursor(shp): ...
arcpy.MakeFeatureLayer_management(shp, "shp_lyr", sql)
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.