I have followed the steps in this video, but when I do
print(brown.categories())
print(len(brown.categories()))
there is no response from the kernelNo error or nothing printed.
My full code below:
import nltk
nltk.download()
from ntlk.corpus import brown
print(brown.categories())
print(len(brown.categories()))
.