Answers for "python how can i get word from a string"

2

how to get words from a string in python

sentence = "How are you feeling today"
sentence = sentence.split() # this returns list of words
# output = ["How", "are", "you", "feeling", "today"]
Posted by: Guest on January-30-2021

Code answers related to "python how can i get word from a string"

Python Answers by Framework

Browse Popular Code Answers by Language