how to count the characters in a panda dataframe column code example
Example: number of total words in cell pandas
df["WANTED_COLUMN"].apply(lambda x: len(str(x).split(' ')))
df["WANTED_COLUMN"].apply(lambda x: len(str(x).split(' ')))