Python 的 str.lower()
方法将 Series/Index 中的所有字符串转换为小写。
参数
无参数。
返回值
系列或索引转换为小写。
例子
要将 Series 中的字符串转换为小写:
s = pd.Series(['hi', 'THIS', 'is SkyTowner'])
s.str.lower()
0 hi
1 this
2 is skytowner
dtype: object
相关用法
- Python Pandas Series str len方法用法及代码示例
- Python Pandas Series str lstrip方法用法及代码示例
- Python Pandas Series str extractall方法用法及代码示例
- Python Pandas Series str split方法用法及代码示例
- Python Pandas Series str center方法用法及代码示例
- Python Pandas Series str pad方法用法及代码示例
- Python Pandas Series str extract方法用法及代码示例
- Python Pandas Series str replace方法用法及代码示例
- Python Pandas Series str strip方法用法及代码示例
- Python Pandas Series str rstrip方法用法及代码示例
- Python Pandas Series string contains方法用法及代码示例
- Python Pandas Series to_list方法用法及代码示例
- Python Pandas Series between方法用法及代码示例
- Python Pandas Series map方法用法及代码示例
- Python Pandas Series hasnans属性用法及代码示例
- Python Pandas Series is_monotonic属性用法及代码示例
- Python Pandas Series to_frame方法用法及代码示例
- Python Pandas Series zfill方法用法及代码示例
- Python Pandas Series argmax方法用法及代码示例
- Python Pandas Series is_monotonic_increasing属性用法及代码示例
- Python Pandas Series is_unique属性用法及代码示例
- Python Pandas Series argmin方法用法及代码示例
- Python Pandas Series value_counts方法用法及代码示例
- Python Pandas Series is_monotonic_decreasing属性用法及代码示例
- Python Pandas Series.cumsum()用法及代码示例
注:本文由纯净天空筛选整理自Arthur Yanagisawa大神的英文原创作品 Pandas Series str | lower method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。