cri.dev about posts uses makes rss

How to convert Pandas Series column values to lowercase

Published on
Tagged with python2 pandas1

Take a look at pandas.Series.str.lower (aka “Vectorized string methods”)

This allows to map / convert all values of a series to lowercase.

E.g.

your_dataframe['some_column'].str.lower()

Here, have a slice of pizza 🍕