How to split a string into a list?

后端 未结 9 2454
执念已碎
执念已碎 2020-11-21 04:32

I want my Python function to split a sentence (input) and store each word in a list. My current code splits the sentence, but does not store the words as a list. How do I do

9条回答
  •  情歌与酒
    2020-11-21 05:07

    I think you are confused because of a typo.

    Replace print(words) with print(word) inside your loop to have every word printed on a different line

提交回复
热议问题