“Удалить библиотеку знаков препинания Python String” Ответ

Удалить пунктуацию с 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

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

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

Удалить библиотеку знаков препинания Python String

import string 
sentence = "Hey guys !, How are 'you' ?"
no_punc_txt = ""
for char in sentence:
   if char not in string.punctuation:
       no_punc_txt = no_punc_txt + char
print(no_punc_txt);                 # Hey guys  How are you 
# or:
no_punc_txt = sentence.translate(sentence.maketrans('', '', string.punctuation))
print(no_punc_txt);                 # Hey guys  How are you 
VasteMonde

Ответы похожие на “Удалить библиотеку знаков препинания Python String”

Вопросы похожие на “Удалить библиотеку знаков препинания Python String”

Больше похожих ответов на “Удалить библиотеку знаков препинания Python String” по Python

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

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