Skip to content

Instantly share code, notes, and snippets.

@ekinhbayar
Created October 16, 2016 23:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ekinhbayar/8ba5dbbb45b7e9093cf1126c24a965ee to your computer and use it in GitHub Desktop.
Save ekinhbayar/8ba5dbbb45b7e9093cf1126c24a965ee to your computer and use it in GitHub Desktop.
Better formatted
from nltk.corpus import brown
for category in brown.categories():
words = brown.tagged_words(categories=category)
text = '\n'.join('%s %s' % word for word in words)
filename = category + '.txt'
with open(filename, 'w') as outfile:
outfile.write(text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment