Answers for "separate words in a text to make a list python"

0

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']
Posted by: Guest on February-10-2021

Code answers related to "separate words in a text to make a list python"

Python Answers by Framework

Browse Popular Code Answers by Language