Does the arcpy.SearchCursor function support field indexing? In the sample script below, can I sent my cursor to loop through the values in the first field by setting an index to search the first field?for x in arcpy.SearchCursor(filepath):
print x[0]