“Удалить строку пунктуацию Python 3” Ответ

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

пунктуация Python3 полоса из строки

import string
#make translator object
translator=str.maketrans('','',string.punctuation)
string_name=string_name.translate(translator)
Breakable Buffalo

Python удалить пунктуацию из строки

# Python program to remove punctuation from a string

import string
text= 'Hello, W_orl$d#!'

# Using translate method
print(text.translate(str.maketrans('', '', string.punctuation)))
Gorgeous Gazelle

Удалить строку пунктуацию Python 3

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 3”

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

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

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

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