split sentence into list of words python code example
Example 1: python split sentence into words
sentence = 'Hello world a b c'
split_sentence = sentence.split(' ')
print(split_sentence)
Example 2: separate words in a text to make a list python
your_text = "some text"
separated_text = your_text.split(" ") #the space is just an exemple but you can put anything
print(separated_text)
output:
['some', 'text']