“Удаление пунктуации в Python” Ответ

Удалить пунктуацию с String Python

#with re
import re
s = "string. With. Punctuation?"
s = re.sub(r'[^\w\s]','',s)
#without re
s = "string. With. Punctuation?"
s.translate(str.maketrans('', '', string.punctuation))
Bad Buffalo

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

import string 
from nltk.tokenize import word_tokenize
s =  set(string.punctuation)          # !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~
sentence = "Hey guys !, How are 'you' ?"
sentence = word_tokenize(sentence)
filtered_word = []
for i in sentence:
    if i not in s:
        filtered_word.append(i);
for word in filtered_word:
  print(word,end = " ")
ai-lover

Чистая пунктуация из струнного питона

s.translate(str.maketrans('', '', string.punctuation))
Difficult Dormouse

Ответы похожие на “Удаление пунктуации в Python”

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

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

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

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