A quick question for the universe of programmers.
DATA. Data frame column consisting of names.
g['NAME']=['John', 'Michael', 'Jezus', 'Donald', 'Suzy']
DESIRED RESULT. Another, parallel data frame column consisting of number of characters in for each name in g['NAME'].
g['NAME_count'] = [4,7,5,6,4]
Thank you in advance!