To go further, manually open an IDE on your computer and copy the output to the website.
Let's work with Italian. To install Italian, use the following code:
import stanza
stanza.download('it')
nlp = stanza.Pipeline(lang="it", processors="tokenize, pos, lemma, depparse, ner")You have a sentence in Italian. Print out all lemmas of that sentence in one list.
Example: ['lemma', 'lemma', ',', 'lemma', 'lemma', '.']
Use Stanza 1.4.0. You can install it with this line:
!pip install stanza==1.4.0