📌  相关文章
📜  如何从python代码示例中的字符串中获取单词

📅  最后修改于: 2022-03-11 14:45:18.397000             🧑  作者: Mango

代码示例1
sentence = "How are you feeling today"
sentence = sentence.split() # this returns list of words
# output = ["How", "are", "you", "feeling", "today"]