data = pd.read_csv("News.csv")
Raw=data.headline
New=Raw[1:3]
for key,value in New.iteritems():
doc = nlp(New.values)
word_tokens=[token.text for token in doc]
word_tokens
TypeError: Argument 'string' has incorrect type (expected str, got numpy.ndarray)