import arcpy # path on the drive to the feature you're trying to manipulate. inFeature = r"..." # SQL expression you want to do. expression = "[field1] + [field2]" # The name of the output field. outField = "field3" # the tool. arcpy.CalculateField_management(inFeature, outField, expression)