What means: TypeError: 'Row' object does not support indexing ???

14188
11
01-27-2015 11:57 PM
JohannesBierer
Occasional Contributor III
rows1 = arcpy.SearchCursor(fc, ["SHAPE@"])
extents = []
for row1 in rows1:
    
    ext = row1[0].extent
    extents.append(row1[0].extent)
    print(extents)
0 Kudos
11 Replies
DanPatterson_Retired
MVP Emeritus
0 Kudos
JohannesBierer
Occasional Contributor III

Saw it - might be that a weekend helps more 🙂

0 Kudos