Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • Esri can definitely be inconsistent (especially with naming things!) but to be fair I think all arcpy commands return a result object. Incidentally you can test this using type(fd0) which returns class 'arcpy.arcobjects.arcobjects.Result' Commented Aug 24, 2016 at 5:01
  • @StephenLead, what I was referring to that returns strings is ListFeatureClasses (and the like), which return lists of strings--vs ListFields, which returns a list of field objects. Commented Aug 24, 2016 at 15:17
  • yep, that one is definitely inconsistent Commented Aug 24, 2016 at 23:00