“Удалить пунктуацию в столбце DataFrame” Ответ

Серия Pandas Удалить пунктуацию

# Define the function to remove the punctuation
def remove_punctuations(text):
    for punctuation in string.punctuation:
        text = text.replace(punctuation, '')
    return text
# Apply to the DF series
df['new_column'] = df['column'].apply(remove_punctuations)
Depressed Dotterel

Python Pandas Удалите пунктуацию

x = pd.DataFrame(dict(column1=["Lorum. ipsum.?"]))
x["column1"] = x["column1"].str.replace('[^\w\s]','')
Sulphix

Удалить пунктуацию в столбце DataFrame

new column and column
Shiny Scarab

Ответы похожие на “Удалить пунктуацию в столбце DataFrame”

Вопросы похожие на “Удалить пунктуацию в столбце DataFrame”

Больше похожих ответов на “Удалить пунктуацию в столбце DataFrame” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования