“Usuń interpunkcję Python String Library” Kod odpowiedzi

Usuń interpunkcję z Python strun

#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

Czyste interpunkcja z Python String

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

Usuń interpunkcję Python String Library

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

Odpowiedzi podobne do “Usuń interpunkcję Python String Library”

Pytania podobne do “Usuń interpunkcję Python String Library”

Więcej pokrewnych odpowiedzi na “Usuń interpunkcję Python String Library” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu