“Supprimer la bibliothèque de chaînes de ponctuation Python” Réponses codées

supprimer la ponctuation de la chaîne 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

ponctuation propre de String Python

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

Supprimer la bibliothèque de chaînes de ponctuation Python

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

Réponses similaires à “Supprimer la bibliothèque de chaînes de ponctuation Python”

Questions similaires à “Supprimer la bibliothèque de chaînes de ponctuation Python”

Plus de réponses similaires à “Supprimer la bibliothèque de chaînes de ponctuation Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code