Files
carkov/typehints/nltk.pyi

5 lines
131 B
Python
Raw Normal View History

2023-09-25 18:30:10 -07:00
from typing import Iterator
def sent_tokenize(sent: str) -> Iterator[str]: ...
def word_tokenize(word: str) -> Iterator[str]: ...