The lower() Method with Pandas Series
Let's find out how to use lower with a pandas series.
We'll cover the following...
Try it yourself
Try executing the code below to see the result.
Press + to interact
import pandas as pds = pd.Series(['Rick', 'Morty', 'Summer', 'Beth', 'Jerry'])print(s.lower())
Explanation
The pandas.Series
has a lot of methods, like those listed below:
In [1]: import pandas as pd
In
...