- Am absolutely new to python programming for ArcGIS.How do I calculate one cell from one field in DBF table into another cell in another field in same table?

Here is what I've got that doesn't work:
import arcpy cursor = arcpy.da.SearchCursor("S2_merge1",["Name1"])cursor1 = arcpy.da.UpdateCursor("S2_merge1",["Name5"])for row in cursor1: row[1]=cursor cursor1.updateRow([row])
أكثر...