Hello Gist

I’ve discovered the magic of Gist embeds, and hope to share a bunch of code!

import arcpy
source ="path/to/featureclass"
srcFlds = arcpy.ListFields(source)
for field in srcFlds:
print("{0} type = {1} length = {2}".format(field.name, field.type, field.length))
view raw checkfields.py hosted with ❤ by GitHub