Created
July 5, 2011 20:01
-
-
Save acrymble/1065775 to your computer and use it in GitHub Desktop.
Python ngram
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| i = 0 | |
| for items in wordlist: | |
| print wordlist[i: i+5] | |
| i += 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment