Answers for "split string python save each word in list"

1

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
1

how to split word in python

text= "I am Batman"
splitted_text= text.split()

Print(splitted_text)
Posted by: Guest on September-02-2020

Code answers related to "split string python save each word in list"

Python Answers by Framework

Browse Popular Code Answers by Language