3
如何將列中每個單詞的首字母大寫?順便說一句,我正在使用python熊貓。例如,將列中每個單詞的首字母大寫Python
Column1
The apple
the Pear
Green tea
我的願望的結果將是:
Column1
The Apple
The Pear
Green Tea
如何將列中每個單詞的首字母大寫?順便說一句,我正在使用python熊貓。例如,將列中每個單詞的首字母大寫Python
Column1
The apple
the Pear
Green tea
我的願望的結果將是:
Column1
The Apple
The Pear
Green Tea
您可以使用str.title
:
print (df.Column1.str.title())
0 The Apple
1 The Pear
2 Green Tea
Name: Column1, dtype: object
另一個非常類似的方法是str.capitalize
,但它轉換爲大寫只有第一個字母:
print (df.Column1.str.capitalize())
0 The apple
1 The pear
2 Green tea
Name: Column1, dtype: object
@jezrael謝謝!奇蹟般有效! –
@JasonChingYuk - 很高興能幫到你! – jezrael