Answers for "python split sentence into words without punctuation"

5

remove punctuation from string python

#with re
import re
s = "string. With. Punctuation?"
s = re.sub(r'[^ws]','',s)
#without re
s = "string. With. Punctuation?"
s.translate(str.maketrans('', '', string.punctuation))
Posted by: Guest on May-26-2020
7

python split sentence into words

sentence = 'Hello world a b c'
split_sentence = sentence.split(' ')
print(split_sentence)
Posted by: Guest on October-12-2020

Code answers related to "python split sentence into words without punctuation"

Python Answers by Framework

Browse Popular Code Answers by Language