I'm writing a script for ArcMap
what I want is
rows = arcpy.UpdateCursor(featureClass) #open a cursor from data source
row = rows.next()
AddressFieldName = "row.ADD_FULL"
while row:
s = AddressFieldName
but it doesn't work. originally
s = row.Add_FULL #Add_FULL is field column name
What can I do to solve this?
ADD_FULLmethod (I can't find description in google) and why you definesin 3 different ways: as string-"row.ADD_FULL", as method applying torow-s = row.Add_FULL(what is correct formADD_FULLorAdd_FULL???) and in some kind of mystery way-s = row + . + AddressFieldName?s:) Can you make required corrections to your question using following tips: specify input, your current code, error log, expected output... For now your question make no sense