I would like to know I use the function len() in Arcpy and why the values that return does not match the fact.
从函数中,len返回12,但实际上列表字段有21。请参阅我的代码
big=arcpy.ListFields('ลพบุรี_PSU_Select')
boss=len(big)
print(boss)
非常感谢所有评论。
我希望len函数在true之后返回
I would like to know I use the function len() in Arcpy and why the values that return does not match the fact.
从函数中,len返回12,但实际上列表字段有21。请参阅我的代码
big=arcpy.ListFields('ลพบุรี_PSU_Select')
boss=len(big)
print(boss)
非常感谢所有评论。
我希望len函数在true之后返回
1条答案
按热度按时间ztmd8pv51#
标题“1 of 21 selected”指的是要素(行)的数量。图层中有21个要素,选择其中一个要素。
相反,
ListFields
函数返回层的所有字段(列)。该层有12个字段(OBJECTID、SHAPE、PSUNUM ...)。