當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Pandas Series str lower方法用法及代碼示例


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

相關用法


注:本文由純淨天空篩選整理自Arthur Yanagisawa大神的英文原創作品 Pandas Series str | lower method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。