37,743
社区成员




import nltk
from nltk.corpus import brown
days =["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"]
cfd = nltk.ConditionalFreqDist((genre, word) for genre in ['news', 'romance'] for word in brown.words(categories=genre))
cfd.plot(samples = days)
cfd.show()