在pandas中,可以使用lower()方法将字符串列中的所有字符转换为小写。lower()方法是pandas.Series.str.lower()的简写形式。
下面是将lower()应用于pandas列的步骤:
import pandas as pd
data = {'Name': ['John', 'Amy', 'David', 'Jessica'],
'Age': [25, 30, 35, 40]}
df = pd.DataFrame(data)
df['Name'] = df['Name'].str.lower()
print(df)
输出结果:
Name Age
0 john 25
1 amy 30
2 david 35
3 jessica 40
lower()方法将字符串列中的所有字符转换为小写,并将转换后的结果赋值给原始列。这样,你就可以在pandas中应用lower()方法来处理字符串列了。
推荐的腾讯云相关产品:腾讯云数据库TencentDB、腾讯云云服务器CVM、腾讯云对象存储COS。
腾讯云数据库TencentDB:https://cloud.tencent.com/product/cdb
腾讯云云服务器CVM:https://cloud.tencent.com/product/cvm
腾讯云对象存储COS:https://cloud.tencent.com/product/cos
领取专属 10元无门槛券
手把手带您无忧上云