“Die Interpunktion Python String Library entfernen” Code-Antworten

Die Zeichensetzung aus der String -Python entfernen

#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

Saubere Interpunktion von String Python

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

Die Interpunktion Python String Library entfernen

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

Ähnliche Antworten wie “Die Interpunktion Python String Library entfernen”

Fragen ähnlich wie “Die Interpunktion Python String Library entfernen”

Weitere verwandte Antworten zu “Die Interpunktion Python String Library entfernen” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen