pandas.Series.str.lower¶
Convert strings in the Series/Index to lowercase.
Equivalent to str.lower().
- return
- Series/Index of objects 
Limitations¶
- All values in Series equal to None are converted to NaNs. 
- This function may reveal slower performance than Pandas* on user system. Users should exercise a tradeoff
- between staying in JIT-region with that function or going back to interpreter mode. 
 
Examples¶
Convert strings in the Series to lowercase.¶
import pandas as pd
from numba import njit
@njit
def series_str_lower():
    series = pd.Series(['DOG', 'foo', 'BaR'])
    out_series = series.str.lower()
    return out_series
print(series_str_lower())
$ python ./series/str/series_str_lower.py
0    dog
1    foo
2    bar
dtype: object
See also
- Series.str.lower
- Converts all characters to lowercase. 
- Series.str.upper
- Converts all characters to uppercase. 
- Series.str.title
- Converts first character of each word to uppercase and remaining to lowercase. 
- Series.str.capitalize
- Converts first character to uppercase and remaining to lowercase. 
- Series.str.swapcase
- Converts uppercase to lowercase and lowercase to uppercase. 
- Series.str.casefold
- Removes all case distinctions in the string.