Created
July 5, 2011 20:00
-
-
Save acrymble/1065766 to your computer and use it in GitHub Desktop.
Python KWIC
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
| wordstring = 'it was the best of times it was the worst of times ' | |
| wordstring += 'it was the age of wisdom it was the age of foolishness' | |
| wordlist = wordstring.split() | |
| print wordlist[0:4] | |
| -> ['it', 'was', 'the', 'best'] | |
| print wordlist[0:6] | |
| -> ['it', 'was', 'the', 'best', 'of', 'times'] | |
| print wordlist[6:10] | |
| -> ['it', 'was', 'the', 'worst'] | |
| print wordlist[0:12] | |
| -> ['it', 'was', 'the', 'best', 'of', 'times', 'it', 'was', 'the', 'worst', 'of', 'times'] | |
| print wordlist[:12] | |
| -> ['it', 'was', 'the', 'best', 'of', 'times', 'it', 'was', 'the', 'worst', 'of', 'times'] | |
| print wordlist[12:] | |
| -> ['it', 'was', 'the', 'age', 'of', 'wisdom', 'it', 'was', 'the', 'age', 'of', 'foolishness'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment