for i in range(0, numberFeatures): subscript = "lstGrouped(%s).STRATA_UNIT_AREA" % i oneStrataUnitArea = int(feature.getAttribute(subscript))
...but when I try to set the attribute, FME makes a new list:
for i in range(0, numberFeatures): feature.setAttribute("lstGrouped(" + str(i) + ").STRATA_UNIT_AREA",str(oneStrataUnitArea))
I can make a new list and expose it on the canvas, but FME does not treat it as a real list. That is, I can't explode a list that I made in Python.
Thanks