I am trying to convert a python code from field calculator to arcpy (pycharm).
All i am wanting to do is convert the below python code into a way python in pycharm will read it.
!Owner_Ab!.title()
This is my attempt however it does not work.
feature_class = CAD_WA
FukMoO = 'Owner_Ab'
with arcpy.da.UpdateCursor(feature_class, FukMoO) as cursor:
for row in cursor:
row[0] = row[0].title
cursor.updateRow(row)