﻿nlp = spacy.load(’fr')
doc = nlp(u"Cette entreprise a été achetée 1 million d'euros ")

for token in doc: print(token.text , token.pos_)
 