Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python split sentence into words

sentence = 'Hello world a b c'
split_sentence = sentence.split(' ')
print(split_sentence)
 
PREVIOUS NEXT
Tagged: #python #split #sentence #words
ADD COMMENT
Topic
Name
4+2 =