I am trying to find how to capitalize the first and second word of column header.
Example:
check match
==> Check Match
date found
==> Date Found
Thank you
I am trying to find how to capitalize the first and second word of column header.
Example:
check match
==> Check Match
date found
==> Date Found
Thank you
If you want to capitalize all words, use:
df.columns = df.columns.str.title()
or:
df.rename(columns=str.title, inplace=True)
Example:
df = pd.DataFrame(columns=['example', 'longer example', 'quite longer example'])
output headers:
['Example', 'Longer Example', 'Quite Longer Example']
df.columns = df.columns.str.replace(r'(\w+)', lambda x: x.group().capitalize(),
n=2, regex=True)
example:
['Example', 'Longer Example', 'Quite Longer example']