python-3.x arcpy中的函数len()为什么与实际不匹配

rlcwz9us  于 2023-03-09  发布在  Python
关注(0)|答案(1)|浏览(128)
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之后返回

ztmd8pv5

ztmd8pv51#

标题“1 of 21 selected”指的是要素(行)的数量。图层中有21个要素,选择其中一个要素。
相反,ListFields函数返回层的所有字段(列)。该层有12个字段(OBJECTID、SHAPE、PSUNUM ...)。

相关问题