pandas.Series.str.upper¶
Convert strings in the Series/Index to uppercase.
Equivalent to str.upper().
- 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 upper case.¶
import pandas as pd
from numba import njit
@njit
def series_str_upper():
    series = pd.Series(['lower', 'CAPITALS', 'this is a sentence', 'SwApCaSe'])
    return series.str.upper()
print(series_str_upper())
$ python ./series/str/series_str_upper.py
0                 LOWER
1              CAPITALS
2    THIS IS A SENTENCE
3              SWAPCASE
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.