I want to add a space between two concatenated field values that would appear like this "Kunle Street", I've tried the code below but its not giving me the expected result any suggestions? Thank you
Code:
arcpy.CalculateField_management("Street", "STREET_NAME", "!NAME!" + " " + "!NAME_EXTEN!", "PYTHON_9.3", "")