问题 I have a list of words for example: words = ['one','two','three four','five','six seven'] # quote was missing And I am trying to create a new list where each item in the list is just one word so I would have: words = ['one','two','three','four','five','six','seven'] Would the best thing to do be join the entire list into a string and then tokenize the string? Something like this: word_string = ' '.join(words) tokenize_list = nltk.tokenize(word_string) Or is there a better option? 回答1: You can