Skip to content

Instantly share code, notes, and snippets.

@sevperez
Created August 24, 2020 21:41
Show Gist options
  • Save sevperez/11e474b4b0e0de66399b74ec4adabfbd to your computer and use it in GitHub Desktop.
Save sevperez/11e474b4b0e0de66399b74ec4adabfbd to your computer and use it in GitHub Desktop.
def print_token_info(token):
print(f"Text:\t{token.text}")
print(f"Start:\t{token.start_char}")
print(f"End:\t{token.end_char}")
print_token_info(moby_p1.sentences[0].tokens[2])
# Text: Ishmael
# Start: 8
# End: 15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment