Hi,
In a Python script, I use arcpy.da.UpdateCursor but I need to read/write into rows using field names and not indexes, because fields to update are given as a parameter by the user.
When creating the update cursor, I select all fields '*' in order manipulate any fields.
However, it is a pain to read/update rows using indexes (dozens of fields)! I know rows are tuples but I really need to access fields using field names.
I spent time looking at documentation and posts but cannot find any proper syntax.
Help would be appreciated