【单选题】阅读下面一段程序: from nltk.corpus import stopwords import nltk sentence = 'Life is short,you need Python.' words = nltk.word_tokenize(sentence) stop_words = stopwords.words('english') remain_words = [] for w...
A.
['Life', 'short', ',', 'need', 'Python', '.']
B.
['Life', 'short', 'need', 'Python',]
C.
['Life', 'is', 'short', ',', 'need', 'Python', '.']
D.
['Life', 'short', ',', 'you' ,'need', 'Python', '.']