从dataframe中删除点(或句点)可以使用pandas库中的str.replace()
方法。该方法可以用于替换字符串中的特定字符。
以下是一个示例代码:
import pandas as pd
# 创建一个包含点的dataframe
df = pd.DataFrame({'text': ['Hello.', 'World.']})
# 使用str.replace()方法删除点
df['text'] = df['text'].str.replace('.', '')
print(df)
输出结果为:
text
0 Hello
1 World
在这个例子中,我们创建了一个包含点的dataframe,并使用str.replace()
方法将点替换为空字符串,从而删除了点。
领取专属 10元无门槛券
手把手带您无忧上云