Created
November 19, 2018 15:54
-
-
Save vallantin/80b5b667c740e1e403a921dd696192af to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for token in doc_en: | |
print(token.text + ': [' + token.pos_ + ' - ' + token.dep_ + ']') | |
for token in doc_pt: | |
print(token.text + ': [' + token.pos_ + ' - ' + token.dep_ + ']') | |
for token in doc_fr: | |
print(token.text + ': [' + token.pos_ + ' - ' + token.dep_ + ']') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment