In [293]:


In [294]:
import nltk
# next line makes graphics appear in the browser rather than separate window
%matplotlib inline

Let's build a corpus.

Here we will work with this file: http://www.gutenberg.org/cache/epub/11/pg11.txt

First, let's download it


In [209]:
import urllib2
url = 'http://www.gutenberg.org/cache/epub/11/pg11.txt'

# get text
t = urllib2.urlopen(url).read().decode('utf8')
assert(t)
len(t)


Out[209]:
167516

In [210]:
text_starts= t.index('CHAPTER I') # find where chapter starts
text_ends = t.index('THE END')
t = t[text_starts:text_ends]
len(t)


Out[210]:
147664

Let's split the text into different chapters


In [211]:
import re # imports regular expression module (which allows fancy text searching)
chapters = re.findall('CHAPTER .+?(?=CHAPTER|$)',t,re.DOTALL) # This is a regular expression that splits out chapters

In [212]:
# Here is a sample of chapter 2 (or chapter[1])
chapters[1][0:500]


Out[212]:
u"CHAPTER II. The Pool of Tears\r\n\r\n'Curiouser and curiouser!' cried Alice (she was so much surprised, that\r\nfor the moment she quite forgot how to speak good English); 'now I'm\r\nopening out like the largest telescope that ever was! Good-bye, feet!'\r\n(for when she looked down at her feet, they seemed to be almost out of\r\nsight, they were getting so far off). 'Oh, my poor little feet, I wonder\r\nwho will put on your shoes and stockings for you now, dears? I'm sure\r\n_I_ shan't be able! I shall be a gr"

Now let's write the chapters to separate text files


In [171]:
for chapter_number, chapter_text in enumerate(chapters):
    file_name = 'data/alice/chapter-'+str(chapter_number+1)+'.txt'
    with open(file_name,'w') as f: 
        f.write(chapter_text)

Now using NTLK, let's create a corpus from those files


In [295]:
from nltk.corpus.reader.plaintext import PlaintextCorpusReader


corpusdir = 'data/alice/' # Directory of corpus.
corpus0 = PlaintextCorpusReader(corpusdir, '.*')
corpus  = nltk.Text(corpus0.words())

Analyzing text

How many words are there?


In [296]:
len(corpus)


Out[296]:
34100

How many unique words are there?


In [297]:
len(set(corpus))


Out[297]:
3012

How do we access particular words?


In [298]:
corpus[0:10]


Out[298]:
[u'CHAPTER',
 u'I',
 u'.',
 u'Down',
 u'the',
 u'Rabbit',
 u'-',
 u'Hole',
 u'Alice',
 u'was']

How do we find words in contexts?


In [299]:
corpus.concordance('Alice')  # you can also try corpus.concordance('Alice',lines=all) or lines = 100, etc.


Displaying 25 of 397 matches:
                                     Alice was beginning to get very tired of s
what is the use of a book ,' thought Alice ' without pictures or conversations 
so VERY remarkable in that ; nor did Alice think it so VERY much out of the way
looked at it , and then hurried on , Alice started to her feet , for it flashed
 hedge . In another moment down went Alice after it , never once considering ho
ped suddenly down , so suddenly that Alice had not a moment to think about stop
she fell past it . ' Well !' thought Alice to herself , ' after such a fall as 
down , I think --' ( for , you see , Alice had learnt several things of this so
tude or Longitude I ' ve got to ?' ( Alice had no idea what Latitude was , or L
 . There was nothing else to do , so Alice soon began talking again . ' Dinah '
cats eat bats , I wonder ?' And here Alice began to get rather sleepy , and wen
dry leaves , and the fall was over . Alice was not a bit hurt , and she jumped 
 not a moment to be lost : away went Alice like the wind , and was just in time
 but they were all locked ; and when Alice had been all the way down one side a
on it except a tiny golden key , and Alice ' s first thought was that it might 
and to her great delight it fitted ! Alice opened the door and found that it le
ead would go through ,' thought poor Alice , ' it would be of very little use w
ay things had happened lately , that Alice had begun to think that very few thi
ertainly was not here before ,' said Alice ,) and round the neck of the bottle 
ay ' Drink me ,' but the wise little Alice was not going to do THAT in a hurry 
bottle was NOT marked ' poison ,' so Alice ventured to taste it , and finding i
* * ' What a curious feeling !' said Alice ; ' I must be shutting up like a tel
 for it might end , you know ,' said Alice to herself , ' in my going out altog
garden at once ; but , alas for poor Alice ! when she got to the door , she fou
s no use in crying like that !' said Alice to herself , rather sharply ; ' I ad

How to find words in similar contexts (in a sentence)?


In [300]:
corpus.similar('caterpillar')


hatter queen duchess dormouse rabbit king gryphon cat well cook air
question way baby mouse other footman month ground garden

How to find the common contexts (within a sentence)?


In [301]:
corpus.common_contexts(['hatter','queen'])


the_but the_you the_added the_said the_was the_i the_who the_and
the_it the_s

Now let's build a frequency distribution


In [302]:
fd = nltk.FreqDist(corpus)

How many times does a word occur?


In [303]:
fd['Alice']


Out[303]:
395

What are all the words?


In [304]:
fd.keys()


Out[304]:
[u'secondly',
 u'pardon',
 u'Tut',
 u'saves',
 u'knelt',
 u'four',
 u'Does',
 u'sleep',
 u'hanging',
 u'ringlets',
 u'onions',
 u'oldest',
 u'hate',
 u'assembled',
 u'consider',
 u'treading',
 u'swam',
 u'blacking',
 u'presents',
 u'under',
 u'inwards',
 u'sorry',
 u'worth',
 u'barley',
 u'Mystery',
 u'mournful',
 u'music',
 u'rise',
 u'every',
 u'bringing',
 u'school',
 u'prize',
 u'wooden',
 u'pinch',
 u'persisted',
 u'muttered',
 u'Go',
 u'favoured',
 u'leaders',
 u'tired',
 u'feathers',
 u'BEG',
 u'BEE',
 u'elegant',
 u'likely',
 u'louder',
 u'air',
 u'machines',
 u'shining',
 u'even',
 u'meekly',
 u'hide',
 u'forgetting',
 u'solemn',
 u'thunder',
 u'exactly',
 u'weren',
 u'poison',
 u'Game',
 u'above',
 u'conduct',
 u'new',
 u'ever',
 u'told',
 u'whose',
 u'never',
 u'wrapping',
 u'here',
 u'met',
 u'protection',
 u'hers',
 u'cardboard',
 u'shriek',
 u'dry',
 u'daughter',
 u'leaves',
 u'Queen',
 u'Hush',
 u'barrowful',
 u'smoke',
 u'NOT',
 u'settled',
 u'ventured',
 u'cheerfully',
 u'golden',
 u'besides',
 u'grumbled',
 u'explained',
 u'angrily',
 u'feelings',
 u'sorrows',
 u'patience',
 u'moral',
 u'guests',
 u'drowned',
 u'punching',
 u'spoke',
 u'would',
 u'arms',
 u'insult',
 u'overhead',
 u'leant',
 u'keeping',
 u'tell',
 u'breathe',
 u'peeping',
 u'Rule',
 u'hurt',
 u'glass',
 u'excellent',
 u'adjourn',
 u'hole',
 u'hold',
 u'must',
 u'me',
 u'locked',
 u'room',
 u'work',
 u'worm',
 u'roof',
 u'obstacle',
 u'elbow',
 u'EVER',
 u'shook',
 u'rosetree',
 u'quiver',
 u'serpent',
 u'give',
 u'Visit',
 u'flung',
 u'caused',
 u'want',
 u'extraordinary',
 u'times',
 u'returned',
 u'Tillie',
 u'end',
 u'thing',
 u'complaining',
 u'agony',
 u'LL',
 u'puzzled',
 u'ONE',
 u'how',
 u'hot',
 u'Jack',
 u'answer',
 u'III',
 u'Zealand',
 u'poker',
 u'flustered',
 u'WOULD',
 u'lad',
 u'ladder',
 u'after',
 u'Will',
 u'wrong',
 u'jumping',
 u'lay',
 u'curiosity',
 u'law',
 u'lap',
 u'All',
 u'attempt',
 u'childhood',
 u'wink',
 u'wriggling',
 u'haste',
 u'Mabel',
 u'aloud',
 u'Speak',
 u'order',
 u'wind',
 u'wine',
 u'Even',
 u'executed',
 u'Talking',
 u'dreamed',
 u'over',
 u'exclamation',
 u'executes',
 u'crumbs',
 u'TRUE',
 u'before',
 u'His',
 u'chatte',
 u'fit',
 u'somewhere',
 u'fireplace',
 u'fix',
 u',',
 u'Here',
 u'writing',
 u'better',
 u'fig',
 u'glanced',
 u'croquet',
 u'weeks',
 u'Him',
 u'overcome',
 u'then',
 u'them',
 u'slate',
 u'safe',
 u'ALICE',
 u'Longitude',
 u'HIGH',
 u'caterpillar',
 u'Antipathies',
 u'they',
 u'interrupt',
 u'yourself',
 u'bank',
 u'pegs',
 u'MYSELF',
 u'meat',
 u'Indeed',
 u'alternately',
 u'leading',
 u'eleventh',
 u'reasonable',
 u'each',
 u'break',
 u'went',
 u'Mouse',
 u'side',
 u'bone',
 u'mean',
 u'calmly',
 u'telescope',
 u'series',
 u'Wow',
 u'SOME',
 u'dodged',
 u'vote',
 u'taught',
 u'Canary',
 u'forgot',
 u'Latitude',
 u'flock',
 u'ring',
 u'VE',
 u'reminding',
 u'velvet',
 u'tales',
 u'sighing',
 u'NEAR',
 u'fellows',
 u'William',
 u're',
 u'encourage',
 u'branch',
 u'Rabbit',
 u'Maybe',
 u'got',
 u'Hole',
 u'Hold',
 u'splashed',
 u'stamping',
 u'turning',
 u'love',
 u'Dodo',
 u'given',
 u'free',
 u'ancient',
 u'whereupon',
 u'W',
 u'mallets',
 u'returning',
 u'wanted',
 u'telescopes',
 u'Gryphon',
 u'enormous',
 u'ate',
 u'shelves',
 u'cackled',
 u'messages',
 u'moment',
 u'pence',
 u'isn',
 u'cucumber',
 u'loud',
 u'bite',
 u'EVERYBODY',
 u'enjoy',
 u'already',
 u'dunce',
 u'curiouser',
 u'Please',
 u'encouraging',
 u'hearing',
 u'wash',
 u'another',
 u'wasn',
 u'thoughtfully',
 u'thick',
 u'YOU',
 u'awfully',
 u'top',
 u'girls',
 u'airs',
 u'master',
 u'too',
 u'wildly',
 u'legs',
 u'YOURS',
 u'Collar',
 u'listen',
 u'consented',
 u'ceiling',
 u'solemnly',
 u'took',
 u'positively',
 u'Beautiful',
 u'distance',
 u'Consider',
 u'coward',
 u'tree',
 u'second',
 u'seated',
 u'shower',
 u'matter',
 u'See',
 u'exclaimed',
 u'flame',
 u'speaking',
 u'feeling',
 u'chrysalis',
 u'fashion',
 u'ran',
 u'shyly',
 u'modern',
 u'mind',
 u'mine',
 u'sorrow',
 u'talking',
 u'rat',
 u'manner',
 u'Crab',
 u'seen',
 u'seem',
 u'Mercia',
 u'tells',
 u'alive',
 u'eels',
 u'strength',
 u'thoroughly',
 u'NEVER',
 u'-',
 u'eagerly',
 u'subjects',
 u'doors',
 u'laughed',
 u'gravy',
 u'Stolen',
 u'though',
 u'MILE',
 u'mouth',
 u'plenty',
 u'hearts',
 u'grave',
 u'stupid',
 u'don',
 u'Fainting',
 u'alarm',
 u'm',
 u'dog',
 u'Are',
 u'alas',
 u'sun',
 u'SLUGGARD',
 u'notion',
 u'came',
 u'decidedly',
 u'saying',
 u'currants',
 u'pardoned',
 u'pope',
 u'stool',
 u'retire',
 u'sage',
 u'ending',
 u'attempts',
 u'queer',
 u'earth',
 u'toast',
 u'busy',
 u'spite',
 u'explain',
 u'sentence',
 u'folded',
 u'sugar',
 u'deepest',
 u'rich',
 u'do',
 u'cartwheels',
 u'mouths',
 u'squeaking',
 u'watch',
 u'coast',
 u'frowning',
 u'shutting',
 u'cushion',
 u'altogether',
 u'Quick',
 u'X',
 u'nasty',
 u'QUEEN',
 u'learned',
 u'bat',
 u'nicely',
 u'anxiously',
 u'rumbling',
 u'licking',
 u'bag',
 u'eyelids',
 u'softly',
 u'explanations',
 u'steam',
 u'ears',
 u'blew',
 u'questions',
 u'fair',
 u'doze',
 u'depends',
 u'decided',
 u'submitted',
 u'cattle',
 u'miserable',
 u'Hardly',
 u'mournfully',
 u'best',
 u'subject',
 u'pebbles',
 u'said',
 u'Run',
 u'away',
 u'Fifteenth',
 u'THAN',
 u'unable',
 u'finger',
 u'sorts',
 u'claws',
 u'we',
 u'men',
 u'LOVE',
 u'adding',
 u'confusion',
 u'weak',
 u'however',
 u'Edgar',
 u'camomile',
 u'twinkling',
 u'drew',
 u'picking',
 u'kitchen',
 u'pity',
 u'received',
 u'accident',
 u'country',
 u'ill',
 u'cup',
 u'jelly',
 u'against',
 u'Bring',
 u'games',
 u'faces',
 u'argue',
 u'asked',
 u'tone',
 u'appeared',
 u'character',
 u'wags',
 u'lullaby',
 u'height',
 u'wider',
 u'beheaded',
 u'truthful',
 u'speak',
 u'shouting',
 u'FENDER',
 u'tarts',
 u'three',
 u'been',
 u'quickly',
 u'chimneys',
 u'much',
 u'interest',
 u'schoolroom',
 u'expected',
 u'lovely',
 u'threw',
 u'natured',
 u'life',
 u'easy',
 u'mushroom',
 u'Pinch',
 u'grunt',
 u'uncommon',
 u'child',
 u'catch',
 u'doth',
 u'teapot',
 u'save',
 u'WAISTCOAT',
 u'sounded',
 u'lessen',
 u'tastes',
 u'CURTSEYING',
 u'ugly',
 u'near',
 u'suppose',
 u'stopping',
 u'voice',
 u'mistake',
 u'remembering',
 u'seven',
 u'changed',
 u'WASHING',
 u'played',
 u'HATED',
 u'is',
 u'it',
 u'Write',
 u'gloomily',
 u'clinging',
 u'in',
 u'Nay',
 u'mouse',
 u'Tell',
 u'if',
 u'grown',
 u'growl',
 u'severity',
 u'things',
 u'make',
 u'Stop',
 u'linked',
 u'forehead',
 u'unfortunate',
 u'vegetable',
 u'plates',
 u'several',
 u'couple',
 u'bells',
 u'fairly',
 u'"\'',
 u'RETURNED',
 u'VI',
 u'tops',
 u'hand',
 u'delight',
 u'Wonderland',
 u'dozing',
 u'opportunity',
 u'thoughts',
 u'kid',
 u'butter',
 u'hearth',
 u'kept',
 u'pattering',
 u'askance',
 u'humble',
 u'Mind',
 u'Mine',
 u'humbly',
 u'impertinent',
 u'Table',
 u'the',
 u'yours',
 u'left',
 u'Thank',
 u'just',
 u'THAT',
 u'sleepy',
 u'verses',
 u'farther',
 u'yes',
 u'yer',
 u'yet',
 u'wandered',
 u'spectacles',
 u"!')",
 u'cherry',
 u'had',
 u'wings',
 u'spread',
 u'beloved',
 u'prison',
 u'has',
 u'hat',
 u'gave',
 u'D',
 u'mayn',
 u'Alice',
 u'possibly',
 u'dreamy',
 u'flamingoes',
 u'afore',
 u'judge',
 u'burnt',
 u'shoulder',
 u'brought',
 u'appearing',
 u'uncivil',
 u'seaside',
 u'officer',
 u'night',
 u'hung',
 u'Stole',
 u'right',
 u'old',
 u'crowd',
 u'people',
 u'Idiot',
 u'crown',
 u'somehow',
 u'dead',
 u'clubs',
 u'Between',
 u'dear',
 u'altered',
 u'bore',
 u'creep',
 u'confusing',
 u'denies',
 u'for',
 u'bottom',
 u'purple',
 u'ear',
 u'Nobody',
 u'everything',
 u'asking',
 u'Let',
 u'denied',
 u'serpents',
 u'beating',
 u'He',
 u'pinched',
 u'neatly',
 u'burn',
 u'disappeared',
 u'shifting',
 u'losing',
 u'bowing',
 u'permitted',
 u'jurors',
 u'wept',
 u'theirs',
 u'newspapers',
 u'choke',
 u'o',
 u'Evidence',
 u'dinner',
 u'despair',
 u'Still',
 u'Birds',
 u'raised',
 u'sob',
 u'wasting',
 u'puzzle',
 u'bound',
 u'cauldron',
 u'interrupting',
 u'down',
 u'respectable',
 u'bats',
 u'PLENTY',
 u'balanced',
 u'frightened',
 u'deal',
 u'wag',
 u'sneezing',
 u'Hand',
 u'way',
 u'editions',
 u'was',
 u'happy',
 u'fork',
 u'head',
 u'waistcoat',
 u'form',
 u'offer',
 u'attempted',
 u'becoming',
 u'remarking',
 u'failure',
 u'):--',
 u'hear',
 u'heap',
 u'removed',
 u'true',
 u'flavour',
 u'full',
 u'rippling',
 u'inside',
 u'Whoever',
 u'until',
 u'WILLIAM',
 u'scream',
 u'unusually',
 u'more',
 u'temper',
 u'Sir',
 u'later',
 u'proved',
 u'sticks',
 u'Sit',
 u'chanced',
 u'Some',
 u'escape',
 u"';",
 u'TWO',
 u'muscular',
 u'evidence',
 u"''",
 u'howling',
 u'guessed',
 u'\'"',
 u'curious',
 u'accounting',
 u"',",
 u"')",
 u'Begin',
 u'Only',
 u'floor',
 u'generally',
 u'handed',
 u'reality',
 u'beheading',
 u'setting',
 u'holding',
 u'tie',
 u'vanished',
 u'HE',
 u'EAT',
 u'saucepans',
 u'picture',
 u'ESQ',
 u'pronounced',
 u'surprise',
 u'ointment',
 u'felt',
 u'Drive',
 u'HOW',
 u'journey',
 u'ridges',
 u'Duchess',
 u'inkstand',
 u'unlocking',
 u'died',
 u'spades',
 u'faster',
 u'together',
 u'beds',
 u'longed',
 u'fact',
 u'remarked',
 u'push',
 u'managed',
 u'chain',
 u'dance',
 u'untwist',
 u'unhappy',
 u'WE',
 u'invent',
 u'crocodile',
 u'mile',
 u'chair',
 u'milk',
 u'row',
 u"?',",
 u'certainly',
 u'bitter',
 u'Exactly',
 u'father',
 u'passage',
 u'answered',
 u'unpleasant',
 u'?--',
 u'terror',
 u'circumstances',
 u'jogged',
 u'fancied',
 u'brown',
 u'FIT',
 u'SOMEWHERE',
 u'Hm',
 u'Adventures',
 u'hatter',
 u'choice',
 u'Twenty',
 u'lark',
 u'stays',
 u'cook',
 u'join',
 u'trouble',
 u'Where',
 u'feeble',
 u'minute',
 u'cool',
 u'sighed',
 u'Just',
 u'presented',
 u'did',
 u'turns',
 u'dig',
 u'accidentally',
 u'Atheling',
 u'leave',
 u'settle',
 u'quick',
 u'rabbits',
 u'round',
 u'prevent',
 u'brave',
 u'says',
 u'stupidly',
 u'tougher',
 u'sigh',
 u'sign',
 u'cost',
 u'dried',
 u'eating',
 u'helpless',
 u'irritated',
 u'appear',
 u'axes',
 u'lazily',
 u'goes',
 u'Imagine',
 u'reply',
 u'falling',
 u'ground',
 u'filled',
 u'growls',
 u'Ma',
 u'partners',
 u'honour',
 u'Tortoise',
 u'water',
 u'pause',
 u'twentieth',
 u'yards',
 u'English',
 u'goldfish',
 u'along',
 u'My',
 u'change',
 u'wait',
 u'box',
 u'boy',
 u'impatiently',
 u'lazy',
 u'my',
 u'teaching',
 u'wherever',
 u'roared',
 u'trial',
 u'creature',
 u'jaw',
 u'usually',
 u'lamps',
 u'quarrel',
 u'Elsie',
 u'SWIM',
 u'Said',
 u'useful',
 u'morals',
 u'extra',
 u'hopeful',
 u'merely',
 u'When',
 u'marked',
 u'inquisitively',
 u'puffed',
 u'Therefore',
 u'Lory',
 u'swallowed',
 u'Caucus',
 u'everybody',
 u'Australia',
 u'prove',
 u'angry',
 u'only',
 u'live',
 u'wood',
 u'somersault',
 u'wondering',
 u'teeth',
 u'ORANGE',
 u'First',
 u'today',
 u'loving',
 u'dismay',
 u'son',
 u'sharing',
 u'These',
 u'Sh',
 u'teases',
 u'ignorant',
 u'oop',
 u'Time',
 u'fly',
 u'deserved',
 u'pretend',
 u'PLEASE',
 u'cat',
 u'Down',
 u'soup',
 u'sour',
 u'can',
 u'growing',
 u'making',
 u'dispute',
 u'laughter',
 u'slightest',
 u'Ground',
 u'heart',
 u'crazy',
 u'nursing',
 u'figure',
 u'confused',
 u'paused',
 u'heard',
 u'chin',
 u'dropped',
 u'sharp',
 u'counting',
 u'stole',
 u'YOUR',
 u'pink',
 u",'",
 u',"',
 u'winter',
 u'fortunately',
 u'buttered',
 u'Who',
 u'pine',
 u',)',
 u'write',
 u'till',
 u'fourth',
 u'axis',
 u'Why',
 u'may',
 u'neat',
 u'dive',
 u'annoyed',
 u'spot',
 u'crashed',
 u'birthday',
 u'tipped',
 u'mad',
 u'?)',
 u"?'",
 u'such',
 u'grow',
 u'man',
 u'scrambling',
 u'natural',
 u'remember',
 u'succeeded',
 u'Fury',
 u'maybe',
 u'daisies',
 u'tale',
 u'suet',
 u'so',
 u'crept',
 u'offend',
 u'pulled',
 u'talk',
 u'recognised',
 u'comfort',
 u'shoes',
 u'seeing',
 u'indeed',
 u'pointed',
 u'years',
 u'course',
 u'quarrelled',
 u'shake',
 u'argued',
 u'White',
 u'still',
 u'birds',
 u'limbs',
 u'yawning',
 u'thank',
 u'curly',
 u'interesting',
 u'curls',
 u'civil',
 u'window',
 u'dreadfully',
 u'thump',
 u'conquest',
 u'happened',
 u'roses',
 ...]

Which words occur only once? (hapax legomenon)


In [305]:
fd.hapaxes()


Out[305]:
[u'Tut',
 u'saves',
 u'knelt',
 u'onions',
 u'oldest',
 u'consider',
 u'blacking',
 u'inwards',
 u'sorry',
 u'barley',
 u'mournful',
 u'rise',
 u'prize',
 u'wooden',
 u'pinch',
 u'favoured',
 u'leaders',
 u'feathers',
 u'BEG',
 u'BEE',
 u'elegant',
 u'louder',
 u'machines',
 u'shining',
 u'hide',
 u'thunder',
 u'weren',
 u'Game',
 u'conduct',
 u'wrapping',
 u'protection',
 u'cardboard',
 u'daughter',
 u'smoke',
 u'cheerfully',
 u'grumbled',
 u'explained',
 u'sorrows',
 u'patience',
 u'drowned',
 u'punching',
 u'insult',
 u'overhead',
 u'leant',
 u'peeping',
 u'Rule',
 u'adjourn',
 u'locked',
 u'worm',
 u'obstacle',
 u'EVER',
 u'rosetree',
 u'quiver',
 u'Visit',
 u'flung',
 u'returned',
 u'Tillie',
 u'complaining',
 u'agony',
 u'LL',
 u'Jack',
 u'III',
 u'Zealand',
 u'poker',
 u'flustered',
 u'lad',
 u'ladder',
 u'attempt',
 u'childhood',
 u'wriggling',
 u'haste',
 u'Even',
 u'Talking',
 u'dreamed',
 u'exclamation',
 u'executes',
 u'TRUE',
 u'His',
 u'chatte',
 u'fit',
 u'fireplace',
 u'fix',
 u'fig',
 u'glanced',
 u'weeks',
 u'Him',
 u'overcome',
 u'HIGH',
 u'caterpillar',
 u'Antipathies',
 u'interrupt',
 u'pegs',
 u'MYSELF',
 u'meat',
 u'Indeed',
 u'alternately',
 u'leading',
 u'eleventh',
 u'reasonable',
 u'bone',
 u'calmly',
 u'series',
 u'SOME',
 u'dodged',
 u'vote',
 u'Canary',
 u'flock',
 u'VE',
 u'reminding',
 u'velvet',
 u'tales',
 u'NEAR',
 u'fellows',
 u'encourage',
 u'branch',
 u'Maybe',
 u'Hole',
 u'splashed',
 u'given',
 u'ancient',
 u'whereupon',
 u'W',
 u'mallets',
 u'returning',
 u'telescopes',
 u'enormous',
 u'ate',
 u'cackled',
 u'pence',
 u'EVERYBODY',
 u'enjoy',
 u'dunce',
 u'curiouser',
 u'thick',
 u'awfully',
 u'airs',
 u'YOURS',
 u'Collar',
 u'consented',
 u'ceiling',
 u'positively',
 u'coward',
 u'seated',
 u'See',
 u'flame',
 u'chrysalis',
 u'shyly',
 u'modern',
 u'rat',
 u'eels',
 u'strength',
 u'subjects',
 u'gravy',
 u'Stolen',
 u'MILE',
 u'plenty',
 u'hearts',
 u'Fainting',
 u'SLUGGARD',
 u'currants',
 u'pardoned',
 u'pope',
 u'stool',
 u'retire',
 u'sage',
 u'attempts',
 u'toast',
 u'busy',
 u'spite',
 u'deepest',
 u'rich',
 u'cartwheels',
 u'coast',
 u'Quick',
 u'X',
 u'nasty',
 u'QUEEN',
 u'learned',
 u'rumbling',
 u'licking',
 u'bag',
 u'eyelids',
 u'softly',
 u'explanations',
 u'steam',
 u'fair',
 u'doze',
 u'depends',
 u'submitted',
 u'cattle',
 u'Hardly',
 u'mournfully',
 u'Run',
 u'Fifteenth',
 u'THAN',
 u'unable',
 u'men',
 u'LOVE',
 u'adding',
 u'Edgar',
 u'camomile',
 u'received',
 u'country',
 u'jelly',
 u'Bring',
 u'games',
 u'argue',
 u'character',
 u'wags',
 u'lullaby',
 u'wider',
 u'truthful',
 u'FENDER',
 u'chimneys',
 u'interest',
 u'schoolroom',
 u'expected',
 u'natured',
 u'Pinch',
 u'grunt',
 u'uncommon',
 u'teapot',
 u'save',
 u'WAISTCOAT',
 u'lessen',
 u'tastes',
 u'CURTSEYING',
 u'stopping',
 u'remembering',
 u'seven',
 u'WASHING',
 u'played',
 u'HATED',
 u'Write',
 u'gloomily',
 u'clinging',
 u'Nay',
 u'severity',
 u'Stop',
 u'linked',
 u'vegetable',
 u'couple',
 u'bells',
 u'fairly',
 u'"\'',
 u'RETURNED',
 u'VI',
 u'tops',
 u'dozing',
 u'hearth',
 u'askance',
 u'humble',
 u'Mine',
 u'impertinent',
 u'Table',
 u'farther',
 u'yes',
 u"!')",
 u'cherry',
 u'wings',
 u'beloved',
 u'prison',
 u'hat',
 u'mayn',
 u'dreamy',
 u'afore',
 u'burnt',
 u'appearing',
 u'uncivil',
 u'seaside',
 u'officer',
 u'hung',
 u'Stole',
 u'Idiot',
 u'somehow',
 u'clubs',
 u'Between',
 u'altered',
 u'bore',
 u'creep',
 u'denies',
 u'purple',
 u'shifting',
 u'losing',
 u'bowing',
 u'permitted',
 u'wept',
 u'theirs',
 u'newspapers',
 u'choke',
 u'Evidence',
 u'despair',
 u'Still',
 u'Birds',
 u'sob',
 u'puzzle',
 u'bound',
 u'respectable',
 u'PLENTY',
 u'balanced',
 u'wag',
 u'Hand',
 u'happy',
 u'fork',
 u'waistcoat',
 u'form',
 u'attempted',
 u'becoming',
 u'failure',
 u'):--',
 u'heap',
 u'flavour',
 u'rippling',
 u'inside',
 u'Whoever',
 u'unusually',
 u'Sir',
 u'sticks',
 u'Sit',
 u'chanced',
 u'muscular',
 u'accounting',
 u"')",
 u'Begin',
 u'reality',
 u'beheading',
 u'setting',
 u'tie',
 u'EAT',
 u'saucepans',
 u'picture',
 u'ESQ',
 u'pronounced',
 u'ointment',
 u'Drive',
 u'HOW',
 u'journey',
 u'ridges',
 u'inkstand',
 u'unlocking',
 u'died',
 u'spades',
 u'push',
 u'chain',
 u'untwist',
 u'WE',
 u'invent',
 u'crocodile',
 u'mile',
 u'chair',
 u"?',",
 u'bitter',
 u'terror',
 u'circumstances',
 u'jogged',
 u'SOMEWHERE',
 u'Hm',
 u'hatter',
 u'Twenty',
 u'lark',
 u'stays',
 u'presented',
 u'dig',
 u'accidentally',
 u'Atheling',
 u'settle',
 u'quick',
 u'rabbits',
 u'prevent',
 u'brave',
 u'stupidly',
 u'tougher',
 u'sign',
 u'cost',
 u'dried',
 u'eating',
 u'helpless',
 u'irritated',
 u'axes',
 u'lazily',
 u'Imagine',
 u'growls',
 u'partners',
 u'twentieth',
 u'yards',
 u'wait',
 u'lazy',
 u'teaching',
 u'roared',
 u'jaw',
 u'lamps',
 u'quarrel',
 u'Elsie',
 u'SWIM',
 u'morals',
 u'extra',
 u'hopeful',
 u'inquisitively',
 u'puffed',
 u'Therefore',
 u'swallowed',
 u'Australia',
 u'prove',
 u'teeth',
 u'ORANGE',
 u'today',
 u'loving',
 u'dismay',
 u'son',
 u'sharing',
 u'Sh',
 u'teases',
 u'ignorant',
 u'deserved',
 u'pretend',
 u'PLEASE',
 u'sour',
 u'laughter',
 u'slightest',
 u'Ground',
 u'crazy',
 u'paused',
 u'counting',
 u'stole',
 u'pink',
 u'winter',
 u'fortunately',
 u'buttered',
 u'pine',
 u'fourth',
 u'axis',
 u'neat',
 u'dive',
 u'annoyed',
 u'spot',
 u'crashed',
 u'birthday',
 u'tipped',
 u'?)',
 u'scrambling',
 u'maybe',
 u'daisies',
 u'suet',
 u'crept',
 u'offend',
 u'pulled',
 u'recognised',
 u'comfort',
 u'seeing',
 u'pointed',
 u'years',
 u'quarrelled',
 u'shake',
 u'argued',
 u'limbs',
 u'thank',
 u'curly',
 u'curls',
 u'conquest',
 u'underneath',
 u'EVEN',
 u'execute',
 u'Their',
 u'drop',
 u'rock',
 u'scolded',
 u'Improve',
 u'eh',
 u'bursting',
 u'SOMEBODY',
 u'worried',
 u'irons',
 u'canvas',
 u'Suppress',
 u'abide',
 u'seriously',
 u'housemaid',
 u'attended',
 u'state',
 u'cart',
 u'screaming',
 u'wits',
 u'Stand',
 u'Shy',
 u".')",
 u'honest',
 u'warning',
 u'sprawling',
 u'flying',
 u'beauti',
 u'spoken',
 u'merrily',
 u'signifies',
 u'carry',
 u'tomorrow',
 u'sheep',
 u'Repeat',
 u'arch',
 u'waist',
 u'trampled',
 u'shiver',
 u'Such',
 u'ridiculous',
 u'eyed',
 u'straightening',
 u'whom',
 u'addressing',
 u'patted',
 u'snorting',
 u'tulip',
 u'downwards',
 u'rudeness',
 u'emphasis',
 u'Half',
 u'Writhing',
 u'encouraged',
 u'butterfly',
 u'Ahem',
 u'opposite',
 u'clearer',
 u'zigzag',
 u'POCKET',
 u'printed',
 u'cleared',
 u'pencils',
 u'fairy',
 u'fills',
 u'egg',
 u'Certainly',
 u'steady',
 u'managing',
 u'pattern',
 u'stockings',
 u'cheap',
 u'fifth',
 u'BUSY',
 u'nodded',
 u'histories',
 u'toffee',
 u'HEARTHRUG',
 u'XII',
 u'hiss',
 u'HAD',
 u'whiles',
 u'cannot',
 u'Right',
 u'resource',
 u'Sends',
 u'seldom',
 u'finishing',
 u'YET',
 u'declared',
 u'burst',
 u'fanned',
 u'ways',
 u'tut',
 u'fanning',
 u'killing',
 u'croqueted',
 u'blame',
 u'dates',
 u'C',
 u'stupidest',
 u'disappointment',
 u'expression',
 u'riddle',
 u'loveliest',
 u'THESE',
 u'pot',
 u'Each',
 u'pop',
 u'accusation',
 u'FOOT',
 u'turkey',
 u'uglify',
 u'fury',
 u'Luckily',
 u'punished',
 u'toss',
 u'engine',
 u'Involved',
 u'Behead',
 u".--'",
 u'PERSONS',
 u'proves',
 u'slippery',
 u'promising',
 u'squeezed',
 u'shrieks',
 u'promised',
 u'educations',
 u'engaged',
 u'couples',
 u'heels',
 u'Grammar',
 u'worry',
 u'pan',
 u'IX',
 u'IV',
 u'II',
 u'IN',
 u'passing',
 u'complained',
 u'SHOES',
 u'Curiouser',
 u'charges',
 u'breeze',
 u'fidgeted',
 u'growled',
 u'kill',
 u'touch',
 u'speed',
 u'Arithmetic',
 u'death',
 u'Advice',
 u'Multiplication',
 u'Change',
 u'kills',
 u'desperately',
 u'lowing',
 u'vague',
 u'tremulous',
 u'Shark',
 u'pounds',
 u'draggled',
 u'shrink',
 u'sternly',
 u'London',
 u'downward',
 u'reduced',
 u'Before',
 u'laugh',
 u'Seaography',
 u'shillings',
 u'respect',
 u'New',
 u'moon',
 u'Magpie',
 u'expressing',
 u'moderate',
 u'welcome',
 u'roast',
 u'sobbed',
 u'subdued',
 u'violence',
 u'shrimp',
 u'chop',
 u'boldly',
 u'act',
 u'Laughing',
 u'imitated',
 u'Heads',
 u'appealed',
 u'burning',
 u'trot',
 u'spreading',
 u'lifted',
 u'PROVES',
 u'rising',
 u'dreaming',
 u'happening',
 u'Though',
 u'attends',
 u'mischief',
 u'jug',
 u'judging',
 u'THERE',
 u'Canterbury',
 u'feather',
 u'arranged',
 u'bawled',
 u'horse',
 u'tremble',
 u'Swim',
 u'rubbed',
 u'Read',
 u'field',
 u'oneself',
 u'inquired',
 u'uncorked',
 u'twinkled',
 u'whistling',
 u'brass',
 u'applause',
 u'wife',
 u'tricks',
 u'strings',
 u'growling',
 u'snout',
 u'SIT',
 u'VOICE',
 u'conger',
 u'ravens',
 u'laughing',
 u'fat',
 u'minded',
 u'hatching',
 u'BOOTS',
 u'sand',
 u'familiarly',
 u'Lacie',
 u'quicker',
 u'rats',
 u'Number',
 u'pass',
 u'grinning',
 u'Latin',
 u'darkness',
 u'crust',
 u'ma',
 u'loose',
 u'answers',
 u'Herald',
 u'affectionately',
 u'search',
 u'stretching',
 u')--',
 u'soldier',
 u'murdering',
 u'family',
 u'clapping',
 u'usurpation',
 u'Tears',
 u'Too',
 u'RABBIT',
 u'toys',
 u'thatched',
 u'RED',
 u'readily',
 u'injure',
 u'faint',
 u'splash',
 u'Coming',
 u'possible',
 u'OUT',
 u'company',
 u'known',
 u'producing',
 u'cunning',
 u'pleasing',
 u'Tarts',
 u'remain',
 u'Nor',
 u'knocked',
 u'furrows',
 u'feebly',
 u'rustled',
 u'share',
 u'station',
 u'condemn',
 u'needs',
 u'Anything',
 u'pressing',
 u'maps',
 u'occasionally',
 u'THROUGH',
 u'skurried',
 u'advice',
 u'denial',
 u'eats',
 u'shade',
 u'banks',
 u'incessantly',
 u'Same',
 u'existence',
 u'cheated',
 u'queerest',
 u'forwards',
 u'exact',
 u'buttercup',
 u'actually',
 u'absence',
 u'parts',
 u'arguments',
 u'V',
 u'ye',
 u'noticing',
 u'fluttered',
 u'someone',
 u'die',
 u'pleasanter',
 u'harm',
 u'begged',
 u'upstairs',
 u'brother',
 u'kneel',
 u'Waiting',
 u'scratching',
 u'wondered',
 u'rearing',
 u'pigeon',
 u'trusts',
 u'Nonsense',
 u'snappishly',
 u'nest',
 u'pun',
 u'crouched',
 u'pleasant',
 u'houses',
 u'imagine',
 u'rises',
 u'thrown',
 u'pairs',
 u'curtsey',
 u'terribly',
 u'daisy',
 u'COURT',
 u'dinn',
 u'shilling',
 u'Croquet',
 u'miss',
 u'paint',
 u'hundred',
 u'XI',
 u'relieved',
 u'uncommonly',
 u'immediate',
 u'luckily',
 u'Long',
 u'traps',
 u'king',
 u'grew',
 u'double',
 u'grey',
 u'spirited',
 u'stalk',
 u'treated',
 u'Shakespeare',
 u'Coils',
 u'Leave',
 u'dainties',
 u'murder',
 u'fading',
 u'commotion',
 u'lit',
 u'swallowing',
 u'frontispiece',
 u'beautify',
 u'hopeless',
 u'eaten',
 u'oyster',
 u'FROM',
 u'mineral',
 u'WATCH',
 u'clean',
 u'daresay',
 u'languid',
 u'memorandum',
 u'idiotic',
 u'Has',
 u'rocket',
 u'grazed',
 u'justice',
 u'unwillingly',
 u'pretty',
 u'circle',
 u'Pool',
 u'meanwhile',
 u'Ambition',
 u'fancying',
 u'whistle',
 u'hid',
 u'pretending',
 u'shared',
 u'doubled',
 u'common',
 u'engraved',
 u'signify',
 u'France',
 u'hoarsely',
 u'clasped',
 u'content',
 u'feared',
 u'splendidly',
 u'SOUP',
 u'various',
 u'guilt',
 u'Hadn',
 u'arrum',
 u'pictured',
 u'meal',
 u'vanishing',
 u'fitted',
 u'finds',
 u'tittered',
 u'sentenced',
 u'):',
 u'sweet',
 u'manners',
 u'hollow',
 u'supple',
 u'Was',
 u'belt',
 u'acceptance',
 u'rattle',
 u'secret',
 u'dropping',
 u'Soles',
 u'meeting',
 u'empty',
 u'gay',
 u'boxed',
 u'!"?\'',
 u'Fetch',
 u'furrow',
 u'raw',
 u'solid',
 u'Dinn',
 u'bill',
 u'Boots',
 u'rope',
 u'pace',
 u'leaving',
 u'righthand',
 u'choking',
 u'grant',
 u'belong',
 u'advise',
 u'desks',
 u'Chorus',
 u'Dear',
 u'flurry',
 u'flown',
 u'arrived',
 u'purpose',
 u'Tale',
 u'lower',
 u'Stigand',
 u'grins',
 u'morsel',
 u'shape',
 u'DON',
 u'Sounds',
 u'Sixteenth',
 u'cur',
 u'Brandy',
 u'remaining',
 u'Distraction',
 u'Last',
 u'Stretching',
 u'Or',
 u'BEFORE',
 u'knock',
 u'DOES',
 u'provoking',
 u'OURS',
 u'foolish',
 u'walrus',
 u'KNOW',
 u'Little',
 u'lodging',
 u'Normans',
 u'understood',
 u'lips',
 u'towards',
 u'ourselves',
 u'saucer',
 u'scale',
 u'pet',
 u'stingy',
 u'scaly',
 u'Look',
 u'refused',
 u'ache',
 u'passionate',
 u'bristling',
 u'wore',
 u'driest',
 u'straightened',
 u'naturedly',
 u'shiny',
 u'bleeds',
 u'undoing',
 u'piteous',
 u'frames',
 u'Shan',
 u'arrow',
 u'consultation',
 u'prettier',
 u'memory',
 u'hoped',
 u'.]',
 u'upright',
 u'raising',
 u'hush',
 u'Soon',
 u'accustomed',
 u'Those',
 u'yelled',
 u'entrance',
 u'To',
 u'skimming',
 u'graceful',
 u'denying',
 u'corners',
 u'backs',
 u'occasional',
 u'Mad',
 u'tart',
 u'brushing',
 ...]

How do you plot the most frequency words?


In [306]:
fd.plot(20,cumulative=False)


How to normalize text?


In [307]:
new_corpus = [w for w in corpus if w.isalpha()] # keep only alphabetic words

In [308]:
stopwords = nltk.corpus.stopwords.words('english')
print stopwords


[u'i', u'me', u'my', u'myself', u'we', u'our', u'ours', u'ourselves', u'you', u'your', u'yours', u'yourself', u'yourselves', u'he', u'him', u'his', u'himself', u'she', u'her', u'hers', u'herself', u'it', u'its', u'itself', u'they', u'them', u'their', u'theirs', u'themselves', u'what', u'which', u'who', u'whom', u'this', u'that', u'these', u'those', u'am', u'is', u'are', u'was', u'were', u'be', u'been', u'being', u'have', u'has', u'had', u'having', u'do', u'does', u'did', u'doing', u'a', u'an', u'the', u'and', u'but', u'if', u'or', u'because', u'as', u'until', u'while', u'of', u'at', u'by', u'for', u'with', u'about', u'against', u'between', u'into', u'through', u'during', u'before', u'after', u'above', u'below', u'to', u'from', u'up', u'down', u'in', u'out', u'on', u'off', u'over', u'under', u'again', u'further', u'then', u'once', u'here', u'there', u'when', u'where', u'why', u'how', u'all', u'any', u'both', u'each', u'few', u'more', u'most', u'other', u'some', u'such', u'no', u'nor', u'not', u'only', u'own', u'same', u'so', u'than', u'too', u'very', u's', u't', u'can', u'will', u'just', u'don', u'should', u'now']

In [309]:
new_corpus = [w.lower() for w in corpus if w.isalpha()]
new_corpus = [w for w in new_corpus if not w in stopwords]
corpus = nltk.Text(new_corpus)

In [310]:
fd2 = nltk.FreqDist(corpus)

In [313]:
fd2.plot(30,cumulative=False)


How do you search for words?


In [314]:
corpus.dispersion_plot(['alice','rabbit','queen'])


How do you find collocations (words that occur together)?


In [316]:
corpus.collocations(num=1000)


mock turtle; march hare; said alice; white rabbit; join dance; soo
oop; minute two; said king; beg pardon; beautiful soup; thought alice;
bread butter; golden key; said caterpillar; set work; said hatter; kid
gloves; beau ootiful; mary ann; yer honour; good deal; evening
beautiful; twinkle twinkle; three gardeners; play croquet; please
majesty; lobster quadrille; ootiful soo; said mock; might well; white
kid; guinea pigs; wow wow; great hurry; hookah mouth; father william;
old fellow; said gryphon; trembling voice; cheshire cat; pack cards;
young lady; poor little; change subject; caucus race; marked poison;
won won; next witness; consider verdict; said duchess; inches high;
feet high; said cat; offended tone; right size; doesn matter; boots
shoes; footman livery; fast asleep; rose tree; wish hadn; poor alice;
rabbit hole; hold tongue; cool fountains; earls mercia; edwin morcar;
latitude longitude; mercia northumbria; morcar earls; plates dishes;
finish story; half hoping; jury box; won join; little golden; another
moment; four times; dead silence; put spectacles; one side; broken
glass; eat bats; officers court; blasts trumpet; cross examine; later
editions; list singers; merely remarking; personal remarks; dance won;
croquet ground; knave hearts; one finger; beat sneezes; catching mice;
digging apples; pictures conversations; shrinking rapidly; give
evidence; came upon; quite forgetting; asking riddles; salt water;
shook head; stood near; music washing; took hookah; old father; little
thing; fan gloves; learning draw; stole tarts; waistcoat pocket; poor
man; eat drink; queen hearts; atom meaning; opportunity showing;
william conqueror; whole party; boy beat; french music; immediately
suppressed; tails mouths; believe atom; editions continued; royal
children; shouted queen; looked anxiously; note book; waited
patiently; advance twice; tis love; great curiosity; close behind;
suppressed officers; crowded round; pennyworth beautiful; could see;
alice replied; alice ventured; glass table; doth little; little girls;
little pattering; low voice; arms folded; sentence execution; sleep
breathe; ought ashamed; bottom well; raving mad; snatch air; come
back; lefthand bit; lovely garden; mile high; sighed deeply; good
opportunity; head impatiently; tell history; dare say; bright eager;
twenty four; happen next; cats eat; green leaves; jurors writing;
sounds broken; little door; delighted find; call tortoise; continued
follows; added explanation; half hour; turning alice; alice thought;
easily offended; indeed said; oop beau; wasn civil; blew three; three
blasts; three legged; opened eyes; silent looked; four hours; live
bottom; closed eyes; day month; fine day; could hear; could remember;
ever saw; found advisable; long ago; looking uneasily; cats dogs;
frightened sudden; important unimportant; last remark; cried alice;
animals birds; didn know; gardeners instantly; great relief; make
grow; little girl; checked hastily; sorrowful tone; cat sitting; eye
fell; fetch executioner; well could; old crab; pattering feet; nothing
else; dodo solemnly; fan pair; draw treacle; oop soo; said march;
shouting head; rabbit blew; spread hand; went school; pair gloves;
dreadfully puzzled; subject conversation; quite forgot; jury wrote;
bowed low; said queen; looking anxiously; half past; never heard;
great deal; let see; man majesty; turned corner; turned pale; bottle
marked; alice felt; tucked away; whole pack; well say; without
attending; first witness; guinea pig; nearly forgotten; pleaded poor;
soup beau; tone great; sudden change; wish could; master old;
cautiously replied; lessons learn; new idea; often seen; sorts things;
passed garden; close ear; feeling glad; hard could; free last; take
care; tell something; nothing whatever; caterpillar well; baby
sneezing; school sea; somebody else; afraid sir; among trees; deal
frightened; would happen; soup evening; alice looked; low trembling;
turn nose; nine feet; looked round; grow larger; walked together;
brought back; one eye; king white; said dormouse; solemn tone; sulky
tone; one catching; seemed chance; change lobsters; talk nonsense;
mouse mouse; thought poor; certain must; must cross; getting walking;
always ready; door led; next verse; best butter; thought might; gloves
fan; thinking children; timid voice; fish footman; dear shall; replied
rather; little scream; little sisters; little startled; tossing head;
pardon cried; went without; sat silent; would like; impossible say;
first figure; say doth; soon made; bright idea; upon faces; almost
wish; pool tears; read book; slates doesn; proper way; staring hatter;
soon found; cat vanished; curious dream; tried fancy; began cry; said
mouse; pair white; began low; silent minute; surprised find; words
drink; makes grow; thing eat; cried mouse; alice could; said pigeon;
looking eggs; king queen; like look; children knew; end tail; looked
sides; hurry change; hardly room; three inches; game queen; leave
court; one foot; beautiful beautiful; room room; could possibly;
wanted much; stupid things; back finish; great surprise; procession
came; said dodo; alice indignantly; courage went; listening went;
gryphon answered; quite natural; little timidly; took watch; window
sure; make one; like candle; like telescope; shaped like; well
perhaps; tea party; natural way; like cats; shall sit; done thought;
cried gryphon; got morning; well enough; would change; two three; put
shoes; beautiful garden; anxiously face; verdict king; sleepy voice;
tis voice; rather timidly; sat still; certainly said; melancholy tone;
see miss; replied eagerly; nothing happened; one cakes; past one;
hands feet; without waiting; glad find; waited till; took fan;
beginning end; moment appeared; felt quite; shriek gryphon; king said;
yes please; went back; thought must; turtle sighed; let try; turning
jury; call next; near house; hare interrupted; wish wouldn; three
soldiers; considered little; get door; sentence first; help said;
replied offended; know true; remember ever; opened door; shall try;
soon finished; slowly back; queen never; let hear; seemed quite; gave
one; eyes nearly; speak minute; deep voice; good many; duchess moral;
last word; queen shrill; heard little; much frightened; much
surprised; must changed; could swim; interrupted great; capital one;
one officers; came different; dormouse shook; game going; going begin;
get dry; get ready; last minutes; quite pleased; quite silent; quite
tired; won talk; would become; top voice; asked another; turtle
replied; began repeat; know means; top head; directed said; could
think; dormouse sitting; two creatures; course said; come join; things
used; gave good; think nothing; treacle well; little creature; making
quite; knew might; keep back; way wood; remember things; felt curious;
began running; exclaimed alice; puzzled much; serpent say; hand hand;
long silence; get hold; near door; wonder shall; one knee; silence
last; side make; great many; hastily replied; another minute; gryphon
went; different mock; matter way; let jury; mean say; without even;
back game; see meaning; two people; dinah cat; one hand; lessons
gryphon; heard something; seemed sort; majesty said; said politely;
said youth; rabbit read; little nervous; little shriek; felt sure;
little house; last sat; sat large; write one; queen play; thing get;
anxiously round; alice beginning; house found; got behind; dear cried;
get used; table large; gave two; idea came; two gave; dear wish; till
eyes; house march; table nothing; began thinking; went eagerly; would
feel; whole thing; yet yet; ever heard; hand made; look like; eyes
getting; yes said; croquet queen; used say; away without; best way;
could help; great question; however last; made another; never left;
eyes half; one trees; caterpillar took; alice rather; majesty began;
nothing sort; nice little; sharp little; back table; certainly much;
would tell; would join; never knew; never seen; nonsense said; said
lory; treacle said; round court; alice much; alice hastily; two feet;
bill got; quite much; come end; lying one; footman began; either like;
thought would; said nothing; little chin; alice went; alice
cautiously; alice guessed; alice loudly; talking head; first question;
would could; went growing; anything looked; however got; never even;
together alice; added dormouse; said five; exactly said; alice quite;
curious thing; gryphon sat; put one; next moment; yet said; feel
little; beheaded said; figure said; fun said; said gravely; said
hoarse; large eyes; door found; must getting; better time; began
talking; cats could; soon came; thing said; duchess took; come let;
hardly know; say anything; thing ever; found long; dance would; went
may; turtle soup; people like; alice began; little sister; know cats;
called queen; cried mock; sort way; high time; said knave; say added;
find way; queen turned; shall never; next came; little bottle; little
glass; walked little; looked good; alice shoulder; vanished alice;
added gryphon; alice waited; mad know; think could; looking round; use
thought; last came; see anything; tea time; explain said; ever see;
must right; saw one; seemed think; think good; heard voice; began
rather; could even; breath said; said duck; next thing; would use;
house like; something like; one gave; hare said; heard rabbit; next
first; would quite; know something; hatter went; gryphon replied; two
two; curious know; even know; tell first; alice whispered; large
rabbit; turtle went; wish would; one end; hare hatter; way things; got
back; duchess duchess; long way; right way; said turning; time
without; silence alice; cat head; gave little; let know; eyes see; see
dear; sure would; little bit; see would; rabbit came; little bill; one
way; caterpillar alice; never come; never get; heard queen; course
know; little use; long time; time found; said footman; got much; get
head; dormouse began; two began; like might; like three; chimney said;
grin said; pardon said; said executioner; said father; said
melancholy; school said; youth said; rabbit voice; could tell; found
could; could would; alice asked; door went; alice grown; first thing;
head head; hare went; rabbit say; back see; went found; well must; bit
said; going one; much way; little way; evidence said; isn said; said
hair; sir said; alice noticed; felt little; time round; talking said;
heard one; said white; upon little; alice timidly; conversation alice;
asleep said; meaning said; whiting said; could get; three little; old
said; queen voice; tell said; alice remarked; name alice; like mouse;
first thought; said last; mouse know; reason said; much could; know
come; alice glad; hurried alice; hand said; head would; hatter queen;
thing know; alice soon; mean said; mine said; witness said; much like;
much said; like said; said jury; know first; know say; cat said; went
mock; think said; gryphon know; child said; mind said; alice good;
know mock; alice always; back little; looked alice; came little; alice
come; afraid said; first one; one rabbit; time queen; better alice;
certainly alice; saw alice; alice heard; one quite; alice called;
alice idea; idea alice; dance said; said cook; duchess said; turtle
said; time went; alice looking; garden alice; said didn; suppose said;
talk said; rabbit little; day said; alice perhaps; alice spoke; said
low; went would; wonder alice; hastily said; went know; alice even;
alice tried; right said; know said; little said; perhaps said; alice
great; alice wish; minute alice; time said; said curious; went one;
sort said; queen said; alice must; alice got; alice shall; alice
course; course alice; upon alice; alice going; seemed alice; well
said; made alice; said without; get said; alice moment; alice put;
hare alice; moment alice; things alice; gryphon alice; dear said;
alice nothing; first said; said rabbit; one alice; alice like; said
right; alice well; said went; alice said; nothing said; hatter said;
alice tone; little alice; said could; mouse alice; time alice; one
said; said one; said came; alice would; alice never; thing alice; see
said; alice head; alice say; must said; said looked; alice think;
queen alice; went alice; never said; voice said; thought said; alice
time; alice one; know alice; began alice; say said; said think; alice
little; gryphon said

How to find bi-grams, tri-grams, and n-grams?


In [320]:
[x for x in nltk.bigrams(corpus)]


Out[320]:
[(u'chapter', u'rabbit'),
 (u'rabbit', u'hole'),
 (u'hole', u'alice'),
 (u'alice', u'beginning'),
 (u'beginning', u'get'),
 (u'get', u'tired'),
 (u'tired', u'sitting'),
 (u'sitting', u'sister'),
 (u'sister', u'bank'),
 (u'bank', u'nothing'),
 (u'nothing', u'twice'),
 (u'twice', u'peeped'),
 (u'peeped', u'book'),
 (u'book', u'sister'),
 (u'sister', u'reading'),
 (u'reading', u'pictures'),
 (u'pictures', u'conversations'),
 (u'conversations', u'use'),
 (u'use', u'book'),
 (u'book', u'thought'),
 (u'thought', u'alice'),
 (u'alice', u'without'),
 (u'without', u'pictures'),
 (u'pictures', u'conversations'),
 (u'conversations', u'considering'),
 (u'considering', u'mind'),
 (u'mind', u'well'),
 (u'well', u'could'),
 (u'could', u'hot'),
 (u'hot', u'day'),
 (u'day', u'made'),
 (u'made', u'feel'),
 (u'feel', u'sleepy'),
 (u'sleepy', u'stupid'),
 (u'stupid', u'whether'),
 (u'whether', u'pleasure'),
 (u'pleasure', u'making'),
 (u'making', u'daisy'),
 (u'daisy', u'chain'),
 (u'chain', u'would'),
 (u'would', u'worth'),
 (u'worth', u'trouble'),
 (u'trouble', u'getting'),
 (u'getting', u'picking'),
 (u'picking', u'daisies'),
 (u'daisies', u'suddenly'),
 (u'suddenly', u'white'),
 (u'white', u'rabbit'),
 (u'rabbit', u'pink'),
 (u'pink', u'eyes'),
 (u'eyes', u'ran'),
 (u'ran', u'close'),
 (u'close', u'nothing'),
 (u'nothing', u'remarkable'),
 (u'remarkable', u'alice'),
 (u'alice', u'think'),
 (u'think', u'much'),
 (u'much', u'way'),
 (u'way', u'hear'),
 (u'hear', u'rabbit'),
 (u'rabbit', u'say'),
 (u'say', u'oh'),
 (u'oh', u'dear'),
 (u'dear', u'oh'),
 (u'oh', u'dear'),
 (u'dear', u'shall'),
 (u'shall', u'late'),
 (u'late', u'thought'),
 (u'thought', u'afterwards'),
 (u'afterwards', u'occurred'),
 (u'occurred', u'ought'),
 (u'ought', u'wondered'),
 (u'wondered', u'time'),
 (u'time', u'seemed'),
 (u'seemed', u'quite'),
 (u'quite', u'natural'),
 (u'natural', u'rabbit'),
 (u'rabbit', u'actually'),
 (u'actually', u'took'),
 (u'took', u'watch'),
 (u'watch', u'waistcoat'),
 (u'waistcoat', u'pocket'),
 (u'pocket', u'looked'),
 (u'looked', u'hurried'),
 (u'hurried', u'alice'),
 (u'alice', u'started'),
 (u'started', u'feet'),
 (u'feet', u'flashed'),
 (u'flashed', u'across'),
 (u'across', u'mind'),
 (u'mind', u'never'),
 (u'never', u'seen'),
 (u'seen', u'rabbit'),
 (u'rabbit', u'either'),
 (u'either', u'waistcoat'),
 (u'waistcoat', u'pocket'),
 (u'pocket', u'watch'),
 (u'watch', u'take'),
 (u'take', u'burning'),
 (u'burning', u'curiosity'),
 (u'curiosity', u'ran'),
 (u'ran', u'across'),
 (u'across', u'field'),
 (u'field', u'fortunately'),
 (u'fortunately', u'time'),
 (u'time', u'see'),
 (u'see', u'pop'),
 (u'pop', u'large'),
 (u'large', u'rabbit'),
 (u'rabbit', u'hole'),
 (u'hole', u'hedge'),
 (u'hedge', u'another'),
 (u'another', u'moment'),
 (u'moment', u'went'),
 (u'went', u'alice'),
 (u'alice', u'never'),
 (u'never', u'considering'),
 (u'considering', u'world'),
 (u'world', u'get'),
 (u'get', u'rabbit'),
 (u'rabbit', u'hole'),
 (u'hole', u'went'),
 (u'went', u'straight'),
 (u'straight', u'like'),
 (u'like', u'tunnel'),
 (u'tunnel', u'way'),
 (u'way', u'dipped'),
 (u'dipped', u'suddenly'),
 (u'suddenly', u'suddenly'),
 (u'suddenly', u'alice'),
 (u'alice', u'moment'),
 (u'moment', u'think'),
 (u'think', u'stopping'),
 (u'stopping', u'found'),
 (u'found', u'falling'),
 (u'falling', u'deep'),
 (u'deep', u'well'),
 (u'well', u'either'),
 (u'either', u'well'),
 (u'well', u'deep'),
 (u'deep', u'fell'),
 (u'fell', u'slowly'),
 (u'slowly', u'plenty'),
 (u'plenty', u'time'),
 (u'time', u'went'),
 (u'went', u'look'),
 (u'look', u'wonder'),
 (u'wonder', u'going'),
 (u'going', u'happen'),
 (u'happen', u'next'),
 (u'next', u'first'),
 (u'first', u'tried'),
 (u'tried', u'look'),
 (u'look', u'make'),
 (u'make', u'coming'),
 (u'coming', u'dark'),
 (u'dark', u'see'),
 (u'see', u'anything'),
 (u'anything', u'looked'),
 (u'looked', u'sides'),
 (u'sides', u'well'),
 (u'well', u'noticed'),
 (u'noticed', u'filled'),
 (u'filled', u'cupboards'),
 (u'cupboards', u'book'),
 (u'book', u'shelves'),
 (u'shelves', u'saw'),
 (u'saw', u'maps'),
 (u'maps', u'pictures'),
 (u'pictures', u'hung'),
 (u'hung', u'upon'),
 (u'upon', u'pegs'),
 (u'pegs', u'took'),
 (u'took', u'jar'),
 (u'jar', u'one'),
 (u'one', u'shelves'),
 (u'shelves', u'passed'),
 (u'passed', u'labelled'),
 (u'labelled', u'orange'),
 (u'orange', u'marmalade'),
 (u'marmalade', u'great'),
 (u'great', u'disappointment'),
 (u'disappointment', u'empty'),
 (u'empty', u'like'),
 (u'like', u'drop'),
 (u'drop', u'jar'),
 (u'jar', u'fear'),
 (u'fear', u'killing'),
 (u'killing', u'somebody'),
 (u'somebody', u'managed'),
 (u'managed', u'put'),
 (u'put', u'one'),
 (u'one', u'cupboards'),
 (u'cupboards', u'fell'),
 (u'fell', u'past'),
 (u'past', u'well'),
 (u'well', u'thought'),
 (u'thought', u'alice'),
 (u'alice', u'fall'),
 (u'fall', u'shall'),
 (u'shall', u'think'),
 (u'think', u'nothing'),
 (u'nothing', u'tumbling'),
 (u'tumbling', u'stairs'),
 (u'stairs', u'brave'),
 (u'brave', u'll'),
 (u'll', u'think'),
 (u'think', u'home'),
 (u'home', u'wouldn'),
 (u'wouldn', u'say'),
 (u'say', u'anything'),
 (u'anything', u'even'),
 (u'even', u'fell'),
 (u'fell', u'top'),
 (u'top', u'house'),
 (u'house', u'likely'),
 (u'likely', u'true'),
 (u'true', u'would'),
 (u'would', u'fall'),
 (u'fall', u'never'),
 (u'never', u'come'),
 (u'come', u'end'),
 (u'end', u'wonder'),
 (u'wonder', u'many'),
 (u'many', u'miles'),
 (u'miles', u've'),
 (u've', u'fallen'),
 (u'fallen', u'time'),
 (u'time', u'said'),
 (u'said', u'aloud'),
 (u'aloud', u'must'),
 (u'must', u'getting'),
 (u'getting', u'somewhere'),
 (u'somewhere', u'near'),
 (u'near', u'centre'),
 (u'centre', u'earth'),
 (u'earth', u'let'),
 (u'let', u'see'),
 (u'see', u'would'),
 (u'would', u'four'),
 (u'four', u'thousand'),
 (u'thousand', u'miles'),
 (u'miles', u'think'),
 (u'think', u'see'),
 (u'see', u'alice'),
 (u'alice', u'learnt'),
 (u'learnt', u'several'),
 (u'several', u'things'),
 (u'things', u'sort'),
 (u'sort', u'lessons'),
 (u'lessons', u'schoolroom'),
 (u'schoolroom', u'though'),
 (u'though', u'good'),
 (u'good', u'opportunity'),
 (u'opportunity', u'showing'),
 (u'showing', u'knowledge'),
 (u'knowledge', u'one'),
 (u'one', u'listen'),
 (u'listen', u'still'),
 (u'still', u'good'),
 (u'good', u'practice'),
 (u'practice', u'say'),
 (u'say', u'yes'),
 (u'yes', u'right'),
 (u'right', u'distance'),
 (u'distance', u'wonder'),
 (u'wonder', u'latitude'),
 (u'latitude', u'longitude'),
 (u'longitude', u've'),
 (u've', u'got'),
 (u'got', u'alice'),
 (u'alice', u'idea'),
 (u'idea', u'latitude'),
 (u'latitude', u'longitude'),
 (u'longitude', u'either'),
 (u'either', u'thought'),
 (u'thought', u'nice'),
 (u'nice', u'grand'),
 (u'grand', u'words'),
 (u'words', u'say'),
 (u'say', u'presently'),
 (u'presently', u'began'),
 (u'began', u'wonder'),
 (u'wonder', u'shall'),
 (u'shall', u'fall'),
 (u'fall', u'right'),
 (u'right', u'earth'),
 (u'earth', u'funny'),
 (u'funny', u'll'),
 (u'll', u'seem'),
 (u'seem', u'come'),
 (u'come', u'among'),
 (u'among', u'people'),
 (u'people', u'walk'),
 (u'walk', u'heads'),
 (u'heads', u'downward'),
 (u'downward', u'antipathies'),
 (u'antipathies', u'think'),
 (u'think', u'rather'),
 (u'rather', u'glad'),
 (u'glad', u'one'),
 (u'one', u'listening'),
 (u'listening', u'time'),
 (u'time', u'didn'),
 (u'didn', u'sound'),
 (u'sound', u'right'),
 (u'right', u'word'),
 (u'word', u'shall'),
 (u'shall', u'ask'),
 (u'ask', u'name'),
 (u'name', u'country'),
 (u'country', u'know'),
 (u'know', u'please'),
 (u'please', u'ma'),
 (u'ma', u'new'),
 (u'new', u'zealand'),
 (u'zealand', u'australia'),
 (u'australia', u'tried'),
 (u'tried', u'curtsey'),
 (u'curtsey', u'spoke'),
 (u'spoke', u'fancy'),
 (u'fancy', u'curtseying'),
 (u'curtseying', u're'),
 (u're', u'falling'),
 (u'falling', u'air'),
 (u'air', u'think'),
 (u'think', u'could'),
 (u'could', u'manage'),
 (u'manage', u'ignorant'),
 (u'ignorant', u'little'),
 (u'little', u'girl'),
 (u'girl', u'll'),
 (u'll', u'think'),
 (u'think', u'asking'),
 (u'asking', u'll'),
 (u'll', u'never'),
 (u'never', u'ask'),
 (u'ask', u'perhaps'),
 (u'perhaps', u'shall'),
 (u'shall', u'see'),
 (u'see', u'written'),
 (u'written', u'somewhere'),
 (u'somewhere', u'nothing'),
 (u'nothing', u'else'),
 (u'else', u'alice'),
 (u'alice', u'soon'),
 (u'soon', u'began'),
 (u'began', u'talking'),
 (u'talking', u'dinah'),
 (u'dinah', u'll'),
 (u'll', u'miss'),
 (u'miss', u'much'),
 (u'much', u'night'),
 (u'night', u'think'),
 (u'think', u'dinah'),
 (u'dinah', u'cat'),
 (u'cat', u'hope'),
 (u'hope', u'll'),
 (u'll', u'remember'),
 (u'remember', u'saucer'),
 (u'saucer', u'milk'),
 (u'milk', u'tea'),
 (u'tea', u'time'),
 (u'time', u'dinah'),
 (u'dinah', u'dear'),
 (u'dear', u'wish'),
 (u'wish', u'mice'),
 (u'mice', u'air'),
 (u'air', u'm'),
 (u'm', u'afraid'),
 (u'afraid', u'might'),
 (u'might', u'catch'),
 (u'catch', u'bat'),
 (u'bat', u'like'),
 (u'like', u'mouse'),
 (u'mouse', u'know'),
 (u'know', u'cats'),
 (u'cats', u'eat'),
 (u'eat', u'bats'),
 (u'bats', u'wonder'),
 (u'wonder', u'alice'),
 (u'alice', u'began'),
 (u'began', u'get'),
 (u'get', u'rather'),
 (u'rather', u'sleepy'),
 (u'sleepy', u'went'),
 (u'went', u'saying'),
 (u'saying', u'dreamy'),
 (u'dreamy', u'sort'),
 (u'sort', u'way'),
 (u'way', u'cats'),
 (u'cats', u'eat'),
 (u'eat', u'bats'),
 (u'bats', u'cats'),
 (u'cats', u'eat'),
 (u'eat', u'bats'),
 (u'bats', u'sometimes'),
 (u'sometimes', u'bats'),
 (u'bats', u'eat'),
 (u'eat', u'cats'),
 (u'cats', u'see'),
 (u'see', u'couldn'),
 (u'couldn', u'answer'),
 (u'answer', u'either'),
 (u'either', u'question'),
 (u'question', u'didn'),
 (u'didn', u'much'),
 (u'much', u'matter'),
 (u'matter', u'way'),
 (u'way', u'put'),
 (u'put', u'felt'),
 (u'felt', u'dozing'),
 (u'dozing', u'begun'),
 (u'begun', u'dream'),
 (u'dream', u'walking'),
 (u'walking', u'hand'),
 (u'hand', u'hand'),
 (u'hand', u'dinah'),
 (u'dinah', u'saying'),
 (u'saying', u'earnestly'),
 (u'earnestly', u'dinah'),
 (u'dinah', u'tell'),
 (u'tell', u'truth'),
 (u'truth', u'ever'),
 (u'ever', u'eat'),
 (u'eat', u'bat'),
 (u'bat', u'suddenly'),
 (u'suddenly', u'thump'),
 (u'thump', u'thump'),
 (u'thump', u'came'),
 (u'came', u'upon'),
 (u'upon', u'heap'),
 (u'heap', u'sticks'),
 (u'sticks', u'dry'),
 (u'dry', u'leaves'),
 (u'leaves', u'fall'),
 (u'fall', u'alice'),
 (u'alice', u'bit'),
 (u'bit', u'hurt'),
 (u'hurt', u'jumped'),
 (u'jumped', u'feet'),
 (u'feet', u'moment'),
 (u'moment', u'looked'),
 (u'looked', u'dark'),
 (u'dark', u'overhead'),
 (u'overhead', u'another'),
 (u'another', u'long'),
 (u'long', u'passage'),
 (u'passage', u'white'),
 (u'white', u'rabbit'),
 (u'rabbit', u'still'),
 (u'still', u'sight'),
 (u'sight', u'hurrying'),
 (u'hurrying', u'moment'),
 (u'moment', u'lost'),
 (u'lost', u'away'),
 (u'away', u'went'),
 (u'went', u'alice'),
 (u'alice', u'like'),
 (u'like', u'wind'),
 (u'wind', u'time'),
 (u'time', u'hear'),
 (u'hear', u'say'),
 (u'say', u'turned'),
 (u'turned', u'corner'),
 (u'corner', u'oh'),
 (u'oh', u'ears'),
 (u'ears', u'whiskers'),
 (u'whiskers', u'late'),
 (u'late', u'getting'),
 (u'getting', u'close'),
 (u'close', u'behind'),
 (u'behind', u'turned'),
 (u'turned', u'corner'),
 (u'corner', u'rabbit'),
 (u'rabbit', u'longer'),
 (u'longer', u'seen'),
 (u'seen', u'found'),
 (u'found', u'long'),
 (u'long', u'low'),
 (u'low', u'hall'),
 (u'hall', u'lit'),
 (u'lit', u'row'),
 (u'row', u'lamps'),
 (u'lamps', u'hanging'),
 (u'hanging', u'roof'),
 (u'roof', u'doors'),
 (u'doors', u'round'),
 (u'round', u'hall'),
 (u'hall', u'locked'),
 (u'locked', u'alice'),
 (u'alice', u'way'),
 (u'way', u'one'),
 (u'one', u'side'),
 (u'side', u'trying'),
 (u'trying', u'every'),
 (u'every', u'door'),
 (u'door', u'walked'),
 (u'walked', u'sadly'),
 (u'sadly', u'middle'),
 (u'middle', u'wondering'),
 (u'wondering', u'ever'),
 (u'ever', u'get'),
 (u'get', u'suddenly'),
 (u'suddenly', u'came'),
 (u'came', u'upon'),
 (u'upon', u'little'),
 (u'little', u'three'),
 (u'three', u'legged'),
 (u'legged', u'table'),
 (u'table', u'made'),
 (u'made', u'solid'),
 (u'solid', u'glass'),
 (u'glass', u'nothing'),
 (u'nothing', u'except'),
 (u'except', u'tiny'),
 (u'tiny', u'golden'),
 (u'golden', u'key'),
 (u'key', u'alice'),
 (u'alice', u'first'),
 (u'first', u'thought'),
 (u'thought', u'might'),
 (u'might', u'belong'),
 (u'belong', u'one'),
 (u'one', u'doors'),
 (u'doors', u'hall'),
 (u'hall', u'alas'),
 (u'alas', u'either'),
 (u'either', u'locks'),
 (u'locks', u'large'),
 (u'large', u'key'),
 (u'key', u'small'),
 (u'small', u'rate'),
 (u'rate', u'would'),
 (u'would', u'open'),
 (u'open', u'however'),
 (u'however', u'second'),
 (u'second', u'time'),
 (u'time', u'round'),
 (u'round', u'came'),
 (u'came', u'upon'),
 (u'upon', u'low'),
 (u'low', u'curtain'),
 (u'curtain', u'noticed'),
 (u'noticed', u'behind'),
 (u'behind', u'little'),
 (u'little', u'door'),
 (u'door', u'fifteen'),
 (u'fifteen', u'inches'),
 (u'inches', u'high'),
 (u'high', u'tried'),
 (u'tried', u'little'),
 (u'little', u'golden'),
 (u'golden', u'key'),
 (u'key', u'lock'),
 (u'lock', u'great'),
 (u'great', u'delight'),
 (u'delight', u'fitted'),
 (u'fitted', u'alice'),
 (u'alice', u'opened'),
 (u'opened', u'door'),
 (u'door', u'found'),
 (u'found', u'led'),
 (u'led', u'small'),
 (u'small', u'passage'),
 (u'passage', u'much'),
 (u'much', u'larger'),
 (u'larger', u'rat'),
 (u'rat', u'hole'),
 (u'hole', u'knelt'),
 (u'knelt', u'looked'),
 (u'looked', u'along'),
 (u'along', u'passage'),
 (u'passage', u'loveliest'),
 (u'loveliest', u'garden'),
 (u'garden', u'ever'),
 (u'ever', u'saw'),
 (u'saw', u'longed'),
 (u'longed', u'get'),
 (u'get', u'dark'),
 (u'dark', u'hall'),
 (u'hall', u'wander'),
 (u'wander', u'among'),
 (u'among', u'beds'),
 (u'beds', u'bright'),
 (u'bright', u'flowers'),
 (u'flowers', u'cool'),
 (u'cool', u'fountains'),
 (u'fountains', u'could'),
 (u'could', u'even'),
 (u'even', u'get'),
 (u'get', u'head'),
 (u'head', u'doorway'),
 (u'doorway', u'even'),
 (u'even', u'head'),
 (u'head', u'would'),
 (u'would', u'go'),
 (u'go', u'thought'),
 (u'thought', u'poor'),
 (u'poor', u'alice'),
 (u'alice', u'would'),
 (u'would', u'little'),
 (u'little', u'use'),
 (u'use', u'without'),
 (u'without', u'shoulders'),
 (u'shoulders', u'oh'),
 (u'oh', u'wish'),
 (u'wish', u'could'),
 (u'could', u'shut'),
 (u'shut', u'like'),
 (u'like', u'telescope'),
 (u'telescope', u'think'),
 (u'think', u'could'),
 (u'could', u'knew'),
 (u'knew', u'begin'),
 (u'begin', u'see'),
 (u'see', u'many'),
 (u'many', u'way'),
 (u'way', u'things'),
 (u'things', u'happened'),
 (u'happened', u'lately'),
 (u'lately', u'alice'),
 (u'alice', u'begun'),
 (u'begun', u'think'),
 (u'think', u'things'),
 (u'things', u'indeed'),
 (u'indeed', u'really'),
 (u'really', u'impossible'),
 (u'impossible', u'seemed'),
 (u'seemed', u'use'),
 (u'use', u'waiting'),
 (u'waiting', u'little'),
 (u'little', u'door'),
 (u'door', u'went'),
 (u'went', u'back'),
 (u'back', u'table'),
 (u'table', u'half'),
 (u'half', u'hoping'),
 (u'hoping', u'might'),
 (u'might', u'find'),
 (u'find', u'another'),
 (u'another', u'key'),
 (u'key', u'rate'),
 (u'rate', u'book'),
 (u'book', u'rules'),
 (u'rules', u'shutting'),
 (u'shutting', u'people'),
 (u'people', u'like'),
 (u'like', u'telescopes'),
 (u'telescopes', u'time'),
 (u'time', u'found'),
 (u'found', u'little'),
 (u'little', u'bottle'),
 (u'bottle', u'certainly'),
 (u'certainly', u'said'),
 (u'said', u'alice'),
 (u'alice', u'round'),
 (u'round', u'neck'),
 (u'neck', u'bottle'),
 (u'bottle', u'paper'),
 (u'paper', u'label'),
 (u'label', u'words'),
 (u'words', u'drink'),
 (u'drink', u'beautifully'),
 (u'beautifully', u'printed'),
 (u'printed', u'large'),
 (u'large', u'letters'),
 (u'letters', u'well'),
 (u'well', u'say'),
 (u'say', u'drink'),
 (u'drink', u'wise'),
 (u'wise', u'little'),
 (u'little', u'alice'),
 (u'alice', u'going'),
 (u'going', u'hurry'),
 (u'hurry', u'll'),
 (u'll', u'look'),
 (u'look', u'first'),
 (u'first', u'said'),
 (u'said', u'see'),
 (u'see', u'whether'),
 (u'whether', u'marked'),
 (u'marked', u'poison'),
 (u'poison', u'read'),
 (u'read', u'several'),
 (u'several', u'nice'),
 (u'nice', u'little'),
 (u'little', u'histories'),
 (u'histories', u'children'),
 (u'children', u'got'),
 (u'got', u'burnt'),
 (u'burnt', u'eaten'),
 (u'eaten', u'wild'),
 (u'wild', u'beasts'),
 (u'beasts', u'unpleasant'),
 (u'unpleasant', u'things'),
 (u'things', u'would'),
 (u'would', u'remember'),
 (u'remember', u'simple'),
 (u'simple', u'rules'),
 (u'rules', u'friends'),
 (u'friends', u'taught'),
 (u'taught', u'red'),
 (u'red', u'hot'),
 (u'hot', u'poker'),
 (u'poker', u'burn'),
 (u'burn', u'hold'),
 (u'hold', u'long'),
 (u'long', u'cut'),
 (u'cut', u'finger'),
 (u'finger', u'deeply'),
 (u'deeply', u'knife'),
 (u'knife', u'usually'),
 (u'usually', u'bleeds'),
 (u'bleeds', u'never'),
 (u'never', u'forgotten'),
 (u'forgotten', u'drink'),
 (u'drink', u'much'),
 (u'much', u'bottle'),
 (u'bottle', u'marked'),
 (u'marked', u'poison'),
 (u'poison', u'almost'),
 (u'almost', u'certain'),
 (u'certain', u'disagree'),
 (u'disagree', u'sooner'),
 (u'sooner', u'later'),
 (u'later', u'however'),
 (u'however', u'bottle'),
 (u'bottle', u'marked'),
 (u'marked', u'poison'),
 (u'poison', u'alice'),
 (u'alice', u'ventured'),
 (u'ventured', u'taste'),
 (u'taste', u'finding'),
 (u'finding', u'nice'),
 (u'nice', u'fact'),
 (u'fact', u'sort'),
 (u'sort', u'mixed'),
 (u'mixed', u'flavour'),
 (u'flavour', u'cherry'),
 (u'cherry', u'tart'),
 (u'tart', u'custard'),
 (u'custard', u'pine'),
 (u'pine', u'apple'),
 (u'apple', u'roast'),
 (u'roast', u'turkey'),
 (u'turkey', u'toffee'),
 (u'toffee', u'hot'),
 (u'hot', u'buttered'),
 (u'buttered', u'toast'),
 (u'toast', u'soon'),
 (u'soon', u'finished'),
 (u'finished', u'curious'),
 (u'curious', u'feeling'),
 (u'feeling', u'said'),
 (u'said', u'alice'),
 (u'alice', u'must'),
 (u'must', u'shutting'),
 (u'shutting', u'like'),
 (u'like', u'telescope'),
 (u'telescope', u'indeed'),
 (u'indeed', u'ten'),
 (u'ten', u'inches'),
 (u'inches', u'high'),
 (u'high', u'face'),
 (u'face', u'brightened'),
 (u'brightened', u'thought'),
 (u'thought', u'right'),
 (u'right', u'size'),
 (u'size', u'going'),
 (u'going', u'little'),
 (u'little', u'door'),
 (u'door', u'lovely'),
 (u'lovely', u'garden'),
 (u'garden', u'first'),
 (u'first', u'however'),
 (u'however', u'waited'),
 (u'waited', u'minutes'),
 (u'minutes', u'see'),
 (u'see', u'going'),
 (u'going', u'shrink'),
 (u'shrink', u'felt'),
 (u'felt', u'little'),
 (u'little', u'nervous'),
 (u'nervous', u'might'),
 (u'might', u'end'),
 (u'end', u'know'),
 (u'know', u'said'),
 (u'said', u'alice'),
 (u'alice', u'going'),
 (u'going', u'altogether'),
 (u'altogether', u'like'),
 (u'like', u'candle'),
 (u'candle', u'wonder'),
 (u'wonder', u'like'),
 (u'like', u'tried'),
 (u'tried', u'fancy'),
 (u'fancy', u'flame'),
 (u'flame', u'candle'),
 (u'candle', u'like'),
 (u'like', u'candle'),
 (u'candle', u'blown'),
 (u'blown', u'could'),
 (u'could', u'remember'),
 (u'remember', u'ever'),
 (u'ever', u'seen'),
 (u'seen', u'thing'),
 (u'thing', u'finding'),
 (u'finding', u'nothing'),
 (u'nothing', u'happened'),
 (u'happened', u'decided'),
 (u'decided', u'going'),
 (u'going', u'garden'),
 (u'garden', u'alas'),
 (u'alas', u'poor'),
 (u'poor', u'alice'),
 (u'alice', u'got'),
 (u'got', u'door'),
 (u'door', u'found'),
 (u'found', u'forgotten'),
 (u'forgotten', u'little'),
 (u'little', u'golden'),
 (u'golden', u'key'),
 (u'key', u'went'),
 (u'went', u'back'),
 (u'back', u'table'),
 (u'table', u'found'),
 (u'found', u'could'),
 (u'could', u'possibly'),
 (u'possibly', u'reach'),
 (u'reach', u'could'),
 (u'could', u'see'),
 (u'see', u'quite'),
 (u'quite', u'plainly'),
 (u'plainly', u'glass'),
 (u'glass', u'tried'),
 (u'tried', u'best'),
 (u'best', u'climb'),
 (u'climb', u'one'),
 (u'one', u'legs'),
 (u'legs', u'table'),
 (u'table', u'slippery'),
 (u'slippery', u'tired'),
 (u'tired', u'trying'),
 (u'trying', u'poor'),
 (u'poor', u'little'),
 (u'little', u'thing'),
 (u'thing', u'sat'),
 (u'sat', u'cried'),
 (u'cried', u'come'),
 (u'come', u'use'),
 (u'use', u'crying'),
 (u'crying', u'like'),
 (u'like', u'said'),
 (u'said', u'alice'),
 (u'alice', u'rather'),
 (u'rather', u'sharply'),
 (u'sharply', u'advise'),
 (u'advise', u'leave'),
 (u'leave', u'minute'),
 (u'minute', u'generally'),
 (u'generally', u'gave'),
 (u'gave', u'good'),
 (u'good', u'advice'),
 (u'advice', u'though'),
 (u'though', u'seldom'),
 (u'seldom', u'followed'),
 (u'followed', u'sometimes'),
 (u'sometimes', u'scolded'),
 (u'scolded', u'severely'),
 (u'severely', u'bring'),
 (u'bring', u'tears'),
 (u'tears', u'eyes'),
 (u'eyes', u'remembered'),
 (u'remembered', u'trying'),
 (u'trying', u'box'),
 (u'box', u'ears'),
 (u'ears', u'cheated'),
 (u'cheated', u'game'),
 (u'game', u'croquet'),
 (u'croquet', u'playing'),
 (u'playing', u'curious'),
 (u'curious', u'child'),
 (u'child', u'fond'),
 (u'fond', u'pretending'),
 (u'pretending', u'two'),
 (u'two', u'people'),
 (u'people', u'use'),
 (u'use', u'thought'),
 (u'thought', u'poor'),
 (u'poor', u'alice'),
 (u'alice', u'pretend'),
 (u'pretend', u'two'),
 (u'two', u'people'),
 (u'people', u'hardly'),
 (u'hardly', u'enough'),
 (u'enough', u'left'),
 (u'left', u'make'),
 (u'make', u'one'),
 (u'one', u'respectable'),
 (u'respectable', u'person'),
 (u'person', u'soon'),
 (u'soon', u'eye'),
 (u'eye', u'fell'),
 (u'fell', u'little'),
 (u'little', u'glass'),
 (u'glass', u'box'),
 (u'box', u'lying'),
 (u'lying', u'table'),
 (u'table', u'opened'),
 (u'opened', u'found'),
 (u'found', u'small'),
 (u'small', u'cake'),
 (u'cake', u'words'),
 (u'words', u'eat'),
 (u'eat', u'beautifully'),
 (u'beautifully', u'marked'),
 (u'marked', u'currants'),
 (u'currants', u'well'),
 (u'well', u'll'),
 (u'll', u'eat'),
 (u'eat', u'said'),
 (u'said', u'alice'),
 (u'alice', u'makes'),
 (u'makes', u'grow'),
 (u'grow', u'larger'),
 (u'larger', u'reach'),
 (u'reach', u'key'),
 (u'key', u'makes'),
 (u'makes', u'grow'),
 (u'grow', u'smaller'),
 (u'smaller', u'creep'),
 (u'creep', u'door'),
 (u'door', u'either'),
 (u'either', u'way'),
 (u'way', u'll'),
 (u'll', u'get'),
 (u'get', u'garden'),
 (u'garden', u'care'),
 (u'care', u'happens'),
 (u'happens', u'ate'),
 (u'ate', u'little'),
 (u'little', u'bit'),
 (u'bit', u'said'),
 (u'said', u'anxiously'),
 (u'anxiously', u'way'),
 (u'way', u'way'),
 (u'way', u'holding'),
 (u'holding', u'hand'),
 (u'hand', u'top'),
 (u'top', u'head'),
 (u'head', u'feel'),
 (u'feel', u'way'),
 (u'way', u'growing'),
 (u'growing', u'quite'),
 (u'quite', u'surprised'),
 (u'surprised', u'find'),
 (u'find', u'remained'),
 (u'remained', u'size'),
 (u'size', u'sure'),
 (u'sure', u'generally'),
 (u'generally', u'happens'),
 (u'happens', u'one'),
 (u'one', u'eats'),
 (u'eats', u'cake'),
 (u'cake', u'alice'),
 (u'alice', u'got'),
 (u'got', u'much'),
 (u'much', u'way'),
 (u'way', u'expecting'),
 (u'expecting', u'nothing'),
 (u'nothing', u'way'),
 (u'way', u'things'),
 (u'things', u'happen'),
 (u'happen', u'seemed'),
 (u'seemed', u'quite'),
 (u'quite', u'dull'),
 (u'dull', u'stupid'),
 (u'stupid', u'life'),
 (u'life', u'go'),
 (u'go', u'common'),
 (u'common', u'way'),
 (u'way', u'set'),
 (u'set', u'work'),
 (u'work', u'soon'),
 (u'soon', u'finished'),
 (u'finished', u'cake'),
 (u'cake', u'chapter'),
 (u'chapter', u'x'),
 (u'x', u'lobster'),
 (u'lobster', u'quadrille'),
 (u'quadrille', u'mock'),
 (u'mock', u'turtle'),
 (u'turtle', u'sighed'),
 (u'sighed', u'deeply'),
 (u'deeply', u'drew'),
 (u'drew', u'back'),
 (u'back', u'one'),
 (u'one', u'flapper'),
 (u'flapper', u'across'),
 ...]

In [321]:
[x for x in nltk.trigrams(corpus)]


Out[321]:
[(u'chapter', u'rabbit', u'hole'),
 (u'rabbit', u'hole', u'alice'),
 (u'hole', u'alice', u'beginning'),
 (u'alice', u'beginning', u'get'),
 (u'beginning', u'get', u'tired'),
 (u'get', u'tired', u'sitting'),
 (u'tired', u'sitting', u'sister'),
 (u'sitting', u'sister', u'bank'),
 (u'sister', u'bank', u'nothing'),
 (u'bank', u'nothing', u'twice'),
 (u'nothing', u'twice', u'peeped'),
 (u'twice', u'peeped', u'book'),
 (u'peeped', u'book', u'sister'),
 (u'book', u'sister', u'reading'),
 (u'sister', u'reading', u'pictures'),
 (u'reading', u'pictures', u'conversations'),
 (u'pictures', u'conversations', u'use'),
 (u'conversations', u'use', u'book'),
 (u'use', u'book', u'thought'),
 (u'book', u'thought', u'alice'),
 (u'thought', u'alice', u'without'),
 (u'alice', u'without', u'pictures'),
 (u'without', u'pictures', u'conversations'),
 (u'pictures', u'conversations', u'considering'),
 (u'conversations', u'considering', u'mind'),
 (u'considering', u'mind', u'well'),
 (u'mind', u'well', u'could'),
 (u'well', u'could', u'hot'),
 (u'could', u'hot', u'day'),
 (u'hot', u'day', u'made'),
 (u'day', u'made', u'feel'),
 (u'made', u'feel', u'sleepy'),
 (u'feel', u'sleepy', u'stupid'),
 (u'sleepy', u'stupid', u'whether'),
 (u'stupid', u'whether', u'pleasure'),
 (u'whether', u'pleasure', u'making'),
 (u'pleasure', u'making', u'daisy'),
 (u'making', u'daisy', u'chain'),
 (u'daisy', u'chain', u'would'),
 (u'chain', u'would', u'worth'),
 (u'would', u'worth', u'trouble'),
 (u'worth', u'trouble', u'getting'),
 (u'trouble', u'getting', u'picking'),
 (u'getting', u'picking', u'daisies'),
 (u'picking', u'daisies', u'suddenly'),
 (u'daisies', u'suddenly', u'white'),
 (u'suddenly', u'white', u'rabbit'),
 (u'white', u'rabbit', u'pink'),
 (u'rabbit', u'pink', u'eyes'),
 (u'pink', u'eyes', u'ran'),
 (u'eyes', u'ran', u'close'),
 (u'ran', u'close', u'nothing'),
 (u'close', u'nothing', u'remarkable'),
 (u'nothing', u'remarkable', u'alice'),
 (u'remarkable', u'alice', u'think'),
 (u'alice', u'think', u'much'),
 (u'think', u'much', u'way'),
 (u'much', u'way', u'hear'),
 (u'way', u'hear', u'rabbit'),
 (u'hear', u'rabbit', u'say'),
 (u'rabbit', u'say', u'oh'),
 (u'say', u'oh', u'dear'),
 (u'oh', u'dear', u'oh'),
 (u'dear', u'oh', u'dear'),
 (u'oh', u'dear', u'shall'),
 (u'dear', u'shall', u'late'),
 (u'shall', u'late', u'thought'),
 (u'late', u'thought', u'afterwards'),
 (u'thought', u'afterwards', u'occurred'),
 (u'afterwards', u'occurred', u'ought'),
 (u'occurred', u'ought', u'wondered'),
 (u'ought', u'wondered', u'time'),
 (u'wondered', u'time', u'seemed'),
 (u'time', u'seemed', u'quite'),
 (u'seemed', u'quite', u'natural'),
 (u'quite', u'natural', u'rabbit'),
 (u'natural', u'rabbit', u'actually'),
 (u'rabbit', u'actually', u'took'),
 (u'actually', u'took', u'watch'),
 (u'took', u'watch', u'waistcoat'),
 (u'watch', u'waistcoat', u'pocket'),
 (u'waistcoat', u'pocket', u'looked'),
 (u'pocket', u'looked', u'hurried'),
 (u'looked', u'hurried', u'alice'),
 (u'hurried', u'alice', u'started'),
 (u'alice', u'started', u'feet'),
 (u'started', u'feet', u'flashed'),
 (u'feet', u'flashed', u'across'),
 (u'flashed', u'across', u'mind'),
 (u'across', u'mind', u'never'),
 (u'mind', u'never', u'seen'),
 (u'never', u'seen', u'rabbit'),
 (u'seen', u'rabbit', u'either'),
 (u'rabbit', u'either', u'waistcoat'),
 (u'either', u'waistcoat', u'pocket'),
 (u'waistcoat', u'pocket', u'watch'),
 (u'pocket', u'watch', u'take'),
 (u'watch', u'take', u'burning'),
 (u'take', u'burning', u'curiosity'),
 (u'burning', u'curiosity', u'ran'),
 (u'curiosity', u'ran', u'across'),
 (u'ran', u'across', u'field'),
 (u'across', u'field', u'fortunately'),
 (u'field', u'fortunately', u'time'),
 (u'fortunately', u'time', u'see'),
 (u'time', u'see', u'pop'),
 (u'see', u'pop', u'large'),
 (u'pop', u'large', u'rabbit'),
 (u'large', u'rabbit', u'hole'),
 (u'rabbit', u'hole', u'hedge'),
 (u'hole', u'hedge', u'another'),
 (u'hedge', u'another', u'moment'),
 (u'another', u'moment', u'went'),
 (u'moment', u'went', u'alice'),
 (u'went', u'alice', u'never'),
 (u'alice', u'never', u'considering'),
 (u'never', u'considering', u'world'),
 (u'considering', u'world', u'get'),
 (u'world', u'get', u'rabbit'),
 (u'get', u'rabbit', u'hole'),
 (u'rabbit', u'hole', u'went'),
 (u'hole', u'went', u'straight'),
 (u'went', u'straight', u'like'),
 (u'straight', u'like', u'tunnel'),
 (u'like', u'tunnel', u'way'),
 (u'tunnel', u'way', u'dipped'),
 (u'way', u'dipped', u'suddenly'),
 (u'dipped', u'suddenly', u'suddenly'),
 (u'suddenly', u'suddenly', u'alice'),
 (u'suddenly', u'alice', u'moment'),
 (u'alice', u'moment', u'think'),
 (u'moment', u'think', u'stopping'),
 (u'think', u'stopping', u'found'),
 (u'stopping', u'found', u'falling'),
 (u'found', u'falling', u'deep'),
 (u'falling', u'deep', u'well'),
 (u'deep', u'well', u'either'),
 (u'well', u'either', u'well'),
 (u'either', u'well', u'deep'),
 (u'well', u'deep', u'fell'),
 (u'deep', u'fell', u'slowly'),
 (u'fell', u'slowly', u'plenty'),
 (u'slowly', u'plenty', u'time'),
 (u'plenty', u'time', u'went'),
 (u'time', u'went', u'look'),
 (u'went', u'look', u'wonder'),
 (u'look', u'wonder', u'going'),
 (u'wonder', u'going', u'happen'),
 (u'going', u'happen', u'next'),
 (u'happen', u'next', u'first'),
 (u'next', u'first', u'tried'),
 (u'first', u'tried', u'look'),
 (u'tried', u'look', u'make'),
 (u'look', u'make', u'coming'),
 (u'make', u'coming', u'dark'),
 (u'coming', u'dark', u'see'),
 (u'dark', u'see', u'anything'),
 (u'see', u'anything', u'looked'),
 (u'anything', u'looked', u'sides'),
 (u'looked', u'sides', u'well'),
 (u'sides', u'well', u'noticed'),
 (u'well', u'noticed', u'filled'),
 (u'noticed', u'filled', u'cupboards'),
 (u'filled', u'cupboards', u'book'),
 (u'cupboards', u'book', u'shelves'),
 (u'book', u'shelves', u'saw'),
 (u'shelves', u'saw', u'maps'),
 (u'saw', u'maps', u'pictures'),
 (u'maps', u'pictures', u'hung'),
 (u'pictures', u'hung', u'upon'),
 (u'hung', u'upon', u'pegs'),
 (u'upon', u'pegs', u'took'),
 (u'pegs', u'took', u'jar'),
 (u'took', u'jar', u'one'),
 (u'jar', u'one', u'shelves'),
 (u'one', u'shelves', u'passed'),
 (u'shelves', u'passed', u'labelled'),
 (u'passed', u'labelled', u'orange'),
 (u'labelled', u'orange', u'marmalade'),
 (u'orange', u'marmalade', u'great'),
 (u'marmalade', u'great', u'disappointment'),
 (u'great', u'disappointment', u'empty'),
 (u'disappointment', u'empty', u'like'),
 (u'empty', u'like', u'drop'),
 (u'like', u'drop', u'jar'),
 (u'drop', u'jar', u'fear'),
 (u'jar', u'fear', u'killing'),
 (u'fear', u'killing', u'somebody'),
 (u'killing', u'somebody', u'managed'),
 (u'somebody', u'managed', u'put'),
 (u'managed', u'put', u'one'),
 (u'put', u'one', u'cupboards'),
 (u'one', u'cupboards', u'fell'),
 (u'cupboards', u'fell', u'past'),
 (u'fell', u'past', u'well'),
 (u'past', u'well', u'thought'),
 (u'well', u'thought', u'alice'),
 (u'thought', u'alice', u'fall'),
 (u'alice', u'fall', u'shall'),
 (u'fall', u'shall', u'think'),
 (u'shall', u'think', u'nothing'),
 (u'think', u'nothing', u'tumbling'),
 (u'nothing', u'tumbling', u'stairs'),
 (u'tumbling', u'stairs', u'brave'),
 (u'stairs', u'brave', u'll'),
 (u'brave', u'll', u'think'),
 (u'll', u'think', u'home'),
 (u'think', u'home', u'wouldn'),
 (u'home', u'wouldn', u'say'),
 (u'wouldn', u'say', u'anything'),
 (u'say', u'anything', u'even'),
 (u'anything', u'even', u'fell'),
 (u'even', u'fell', u'top'),
 (u'fell', u'top', u'house'),
 (u'top', u'house', u'likely'),
 (u'house', u'likely', u'true'),
 (u'likely', u'true', u'would'),
 (u'true', u'would', u'fall'),
 (u'would', u'fall', u'never'),
 (u'fall', u'never', u'come'),
 (u'never', u'come', u'end'),
 (u'come', u'end', u'wonder'),
 (u'end', u'wonder', u'many'),
 (u'wonder', u'many', u'miles'),
 (u'many', u'miles', u've'),
 (u'miles', u've', u'fallen'),
 (u've', u'fallen', u'time'),
 (u'fallen', u'time', u'said'),
 (u'time', u'said', u'aloud'),
 (u'said', u'aloud', u'must'),
 (u'aloud', u'must', u'getting'),
 (u'must', u'getting', u'somewhere'),
 (u'getting', u'somewhere', u'near'),
 (u'somewhere', u'near', u'centre'),
 (u'near', u'centre', u'earth'),
 (u'centre', u'earth', u'let'),
 (u'earth', u'let', u'see'),
 (u'let', u'see', u'would'),
 (u'see', u'would', u'four'),
 (u'would', u'four', u'thousand'),
 (u'four', u'thousand', u'miles'),
 (u'thousand', u'miles', u'think'),
 (u'miles', u'think', u'see'),
 (u'think', u'see', u'alice'),
 (u'see', u'alice', u'learnt'),
 (u'alice', u'learnt', u'several'),
 (u'learnt', u'several', u'things'),
 (u'several', u'things', u'sort'),
 (u'things', u'sort', u'lessons'),
 (u'sort', u'lessons', u'schoolroom'),
 (u'lessons', u'schoolroom', u'though'),
 (u'schoolroom', u'though', u'good'),
 (u'though', u'good', u'opportunity'),
 (u'good', u'opportunity', u'showing'),
 (u'opportunity', u'showing', u'knowledge'),
 (u'showing', u'knowledge', u'one'),
 (u'knowledge', u'one', u'listen'),
 (u'one', u'listen', u'still'),
 (u'listen', u'still', u'good'),
 (u'still', u'good', u'practice'),
 (u'good', u'practice', u'say'),
 (u'practice', u'say', u'yes'),
 (u'say', u'yes', u'right'),
 (u'yes', u'right', u'distance'),
 (u'right', u'distance', u'wonder'),
 (u'distance', u'wonder', u'latitude'),
 (u'wonder', u'latitude', u'longitude'),
 (u'latitude', u'longitude', u've'),
 (u'longitude', u've', u'got'),
 (u've', u'got', u'alice'),
 (u'got', u'alice', u'idea'),
 (u'alice', u'idea', u'latitude'),
 (u'idea', u'latitude', u'longitude'),
 (u'latitude', u'longitude', u'either'),
 (u'longitude', u'either', u'thought'),
 (u'either', u'thought', u'nice'),
 (u'thought', u'nice', u'grand'),
 (u'nice', u'grand', u'words'),
 (u'grand', u'words', u'say'),
 (u'words', u'say', u'presently'),
 (u'say', u'presently', u'began'),
 (u'presently', u'began', u'wonder'),
 (u'began', u'wonder', u'shall'),
 (u'wonder', u'shall', u'fall'),
 (u'shall', u'fall', u'right'),
 (u'fall', u'right', u'earth'),
 (u'right', u'earth', u'funny'),
 (u'earth', u'funny', u'll'),
 (u'funny', u'll', u'seem'),
 (u'll', u'seem', u'come'),
 (u'seem', u'come', u'among'),
 (u'come', u'among', u'people'),
 (u'among', u'people', u'walk'),
 (u'people', u'walk', u'heads'),
 (u'walk', u'heads', u'downward'),
 (u'heads', u'downward', u'antipathies'),
 (u'downward', u'antipathies', u'think'),
 (u'antipathies', u'think', u'rather'),
 (u'think', u'rather', u'glad'),
 (u'rather', u'glad', u'one'),
 (u'glad', u'one', u'listening'),
 (u'one', u'listening', u'time'),
 (u'listening', u'time', u'didn'),
 (u'time', u'didn', u'sound'),
 (u'didn', u'sound', u'right'),
 (u'sound', u'right', u'word'),
 (u'right', u'word', u'shall'),
 (u'word', u'shall', u'ask'),
 (u'shall', u'ask', u'name'),
 (u'ask', u'name', u'country'),
 (u'name', u'country', u'know'),
 (u'country', u'know', u'please'),
 (u'know', u'please', u'ma'),
 (u'please', u'ma', u'new'),
 (u'ma', u'new', u'zealand'),
 (u'new', u'zealand', u'australia'),
 (u'zealand', u'australia', u'tried'),
 (u'australia', u'tried', u'curtsey'),
 (u'tried', u'curtsey', u'spoke'),
 (u'curtsey', u'spoke', u'fancy'),
 (u'spoke', u'fancy', u'curtseying'),
 (u'fancy', u'curtseying', u're'),
 (u'curtseying', u're', u'falling'),
 (u're', u'falling', u'air'),
 (u'falling', u'air', u'think'),
 (u'air', u'think', u'could'),
 (u'think', u'could', u'manage'),
 (u'could', u'manage', u'ignorant'),
 (u'manage', u'ignorant', u'little'),
 (u'ignorant', u'little', u'girl'),
 (u'little', u'girl', u'll'),
 (u'girl', u'll', u'think'),
 (u'll', u'think', u'asking'),
 (u'think', u'asking', u'll'),
 (u'asking', u'll', u'never'),
 (u'll', u'never', u'ask'),
 (u'never', u'ask', u'perhaps'),
 (u'ask', u'perhaps', u'shall'),
 (u'perhaps', u'shall', u'see'),
 (u'shall', u'see', u'written'),
 (u'see', u'written', u'somewhere'),
 (u'written', u'somewhere', u'nothing'),
 (u'somewhere', u'nothing', u'else'),
 (u'nothing', u'else', u'alice'),
 (u'else', u'alice', u'soon'),
 (u'alice', u'soon', u'began'),
 (u'soon', u'began', u'talking'),
 (u'began', u'talking', u'dinah'),
 (u'talking', u'dinah', u'll'),
 (u'dinah', u'll', u'miss'),
 (u'll', u'miss', u'much'),
 (u'miss', u'much', u'night'),
 (u'much', u'night', u'think'),
 (u'night', u'think', u'dinah'),
 (u'think', u'dinah', u'cat'),
 (u'dinah', u'cat', u'hope'),
 (u'cat', u'hope', u'll'),
 (u'hope', u'll', u'remember'),
 (u'll', u'remember', u'saucer'),
 (u'remember', u'saucer', u'milk'),
 (u'saucer', u'milk', u'tea'),
 (u'milk', u'tea', u'time'),
 (u'tea', u'time', u'dinah'),
 (u'time', u'dinah', u'dear'),
 (u'dinah', u'dear', u'wish'),
 (u'dear', u'wish', u'mice'),
 (u'wish', u'mice', u'air'),
 (u'mice', u'air', u'm'),
 (u'air', u'm', u'afraid'),
 (u'm', u'afraid', u'might'),
 (u'afraid', u'might', u'catch'),
 (u'might', u'catch', u'bat'),
 (u'catch', u'bat', u'like'),
 (u'bat', u'like', u'mouse'),
 (u'like', u'mouse', u'know'),
 (u'mouse', u'know', u'cats'),
 (u'know', u'cats', u'eat'),
 (u'cats', u'eat', u'bats'),
 (u'eat', u'bats', u'wonder'),
 (u'bats', u'wonder', u'alice'),
 (u'wonder', u'alice', u'began'),
 (u'alice', u'began', u'get'),
 (u'began', u'get', u'rather'),
 (u'get', u'rather', u'sleepy'),
 (u'rather', u'sleepy', u'went'),
 (u'sleepy', u'went', u'saying'),
 (u'went', u'saying', u'dreamy'),
 (u'saying', u'dreamy', u'sort'),
 (u'dreamy', u'sort', u'way'),
 (u'sort', u'way', u'cats'),
 (u'way', u'cats', u'eat'),
 (u'cats', u'eat', u'bats'),
 (u'eat', u'bats', u'cats'),
 (u'bats', u'cats', u'eat'),
 (u'cats', u'eat', u'bats'),
 (u'eat', u'bats', u'sometimes'),
 (u'bats', u'sometimes', u'bats'),
 (u'sometimes', u'bats', u'eat'),
 (u'bats', u'eat', u'cats'),
 (u'eat', u'cats', u'see'),
 (u'cats', u'see', u'couldn'),
 (u'see', u'couldn', u'answer'),
 (u'couldn', u'answer', u'either'),
 (u'answer', u'either', u'question'),
 (u'either', u'question', u'didn'),
 (u'question', u'didn', u'much'),
 (u'didn', u'much', u'matter'),
 (u'much', u'matter', u'way'),
 (u'matter', u'way', u'put'),
 (u'way', u'put', u'felt'),
 (u'put', u'felt', u'dozing'),
 (u'felt', u'dozing', u'begun'),
 (u'dozing', u'begun', u'dream'),
 (u'begun', u'dream', u'walking'),
 (u'dream', u'walking', u'hand'),
 (u'walking', u'hand', u'hand'),
 (u'hand', u'hand', u'dinah'),
 (u'hand', u'dinah', u'saying'),
 (u'dinah', u'saying', u'earnestly'),
 (u'saying', u'earnestly', u'dinah'),
 (u'earnestly', u'dinah', u'tell'),
 (u'dinah', u'tell', u'truth'),
 (u'tell', u'truth', u'ever'),
 (u'truth', u'ever', u'eat'),
 (u'ever', u'eat', u'bat'),
 (u'eat', u'bat', u'suddenly'),
 (u'bat', u'suddenly', u'thump'),
 (u'suddenly', u'thump', u'thump'),
 (u'thump', u'thump', u'came'),
 (u'thump', u'came', u'upon'),
 (u'came', u'upon', u'heap'),
 (u'upon', u'heap', u'sticks'),
 (u'heap', u'sticks', u'dry'),
 (u'sticks', u'dry', u'leaves'),
 (u'dry', u'leaves', u'fall'),
 (u'leaves', u'fall', u'alice'),
 (u'fall', u'alice', u'bit'),
 (u'alice', u'bit', u'hurt'),
 (u'bit', u'hurt', u'jumped'),
 (u'hurt', u'jumped', u'feet'),
 (u'jumped', u'feet', u'moment'),
 (u'feet', u'moment', u'looked'),
 (u'moment', u'looked', u'dark'),
 (u'looked', u'dark', u'overhead'),
 (u'dark', u'overhead', u'another'),
 (u'overhead', u'another', u'long'),
 (u'another', u'long', u'passage'),
 (u'long', u'passage', u'white'),
 (u'passage', u'white', u'rabbit'),
 (u'white', u'rabbit', u'still'),
 (u'rabbit', u'still', u'sight'),
 (u'still', u'sight', u'hurrying'),
 (u'sight', u'hurrying', u'moment'),
 (u'hurrying', u'moment', u'lost'),
 (u'moment', u'lost', u'away'),
 (u'lost', u'away', u'went'),
 (u'away', u'went', u'alice'),
 (u'went', u'alice', u'like'),
 (u'alice', u'like', u'wind'),
 (u'like', u'wind', u'time'),
 (u'wind', u'time', u'hear'),
 (u'time', u'hear', u'say'),
 (u'hear', u'say', u'turned'),
 (u'say', u'turned', u'corner'),
 (u'turned', u'corner', u'oh'),
 (u'corner', u'oh', u'ears'),
 (u'oh', u'ears', u'whiskers'),
 (u'ears', u'whiskers', u'late'),
 (u'whiskers', u'late', u'getting'),
 (u'late', u'getting', u'close'),
 (u'getting', u'close', u'behind'),
 (u'close', u'behind', u'turned'),
 (u'behind', u'turned', u'corner'),
 (u'turned', u'corner', u'rabbit'),
 (u'corner', u'rabbit', u'longer'),
 (u'rabbit', u'longer', u'seen'),
 (u'longer', u'seen', u'found'),
 (u'seen', u'found', u'long'),
 (u'found', u'long', u'low'),
 (u'long', u'low', u'hall'),
 (u'low', u'hall', u'lit'),
 (u'hall', u'lit', u'row'),
 (u'lit', u'row', u'lamps'),
 (u'row', u'lamps', u'hanging'),
 (u'lamps', u'hanging', u'roof'),
 (u'hanging', u'roof', u'doors'),
 (u'roof', u'doors', u'round'),
 (u'doors', u'round', u'hall'),
 (u'round', u'hall', u'locked'),
 (u'hall', u'locked', u'alice'),
 (u'locked', u'alice', u'way'),
 (u'alice', u'way', u'one'),
 (u'way', u'one', u'side'),
 (u'one', u'side', u'trying'),
 (u'side', u'trying', u'every'),
 (u'trying', u'every', u'door'),
 (u'every', u'door', u'walked'),
 (u'door', u'walked', u'sadly'),
 (u'walked', u'sadly', u'middle'),
 (u'sadly', u'middle', u'wondering'),
 (u'middle', u'wondering', u'ever'),
 (u'wondering', u'ever', u'get'),
 (u'ever', u'get', u'suddenly'),
 (u'get', u'suddenly', u'came'),
 (u'suddenly', u'came', u'upon'),
 (u'came', u'upon', u'little'),
 (u'upon', u'little', u'three'),
 (u'little', u'three', u'legged'),
 (u'three', u'legged', u'table'),
 (u'legged', u'table', u'made'),
 (u'table', u'made', u'solid'),
 (u'made', u'solid', u'glass'),
 (u'solid', u'glass', u'nothing'),
 (u'glass', u'nothing', u'except'),
 (u'nothing', u'except', u'tiny'),
 (u'except', u'tiny', u'golden'),
 (u'tiny', u'golden', u'key'),
 (u'golden', u'key', u'alice'),
 (u'key', u'alice', u'first'),
 (u'alice', u'first', u'thought'),
 (u'first', u'thought', u'might'),
 (u'thought', u'might', u'belong'),
 (u'might', u'belong', u'one'),
 (u'belong', u'one', u'doors'),
 (u'one', u'doors', u'hall'),
 (u'doors', u'hall', u'alas'),
 (u'hall', u'alas', u'either'),
 (u'alas', u'either', u'locks'),
 (u'either', u'locks', u'large'),
 (u'locks', u'large', u'key'),
 (u'large', u'key', u'small'),
 (u'key', u'small', u'rate'),
 (u'small', u'rate', u'would'),
 (u'rate', u'would', u'open'),
 (u'would', u'open', u'however'),
 (u'open', u'however', u'second'),
 (u'however', u'second', u'time'),
 (u'second', u'time', u'round'),
 (u'time', u'round', u'came'),
 (u'round', u'came', u'upon'),
 (u'came', u'upon', u'low'),
 (u'upon', u'low', u'curtain'),
 (u'low', u'curtain', u'noticed'),
 (u'curtain', u'noticed', u'behind'),
 (u'noticed', u'behind', u'little'),
 (u'behind', u'little', u'door'),
 (u'little', u'door', u'fifteen'),
 (u'door', u'fifteen', u'inches'),
 (u'fifteen', u'inches', u'high'),
 (u'inches', u'high', u'tried'),
 (u'high', u'tried', u'little'),
 (u'tried', u'little', u'golden'),
 (u'little', u'golden', u'key'),
 (u'golden', u'key', u'lock'),
 (u'key', u'lock', u'great'),
 (u'lock', u'great', u'delight'),
 (u'great', u'delight', u'fitted'),
 (u'delight', u'fitted', u'alice'),
 (u'fitted', u'alice', u'opened'),
 (u'alice', u'opened', u'door'),
 (u'opened', u'door', u'found'),
 (u'door', u'found', u'led'),
 (u'found', u'led', u'small'),
 (u'led', u'small', u'passage'),
 (u'small', u'passage', u'much'),
 (u'passage', u'much', u'larger'),
 (u'much', u'larger', u'rat'),
 (u'larger', u'rat', u'hole'),
 (u'rat', u'hole', u'knelt'),
 (u'hole', u'knelt', u'looked'),
 (u'knelt', u'looked', u'along'),
 (u'looked', u'along', u'passage'),
 (u'along', u'passage', u'loveliest'),
 (u'passage', u'loveliest', u'garden'),
 (u'loveliest', u'garden', u'ever'),
 (u'garden', u'ever', u'saw'),
 (u'ever', u'saw', u'longed'),
 (u'saw', u'longed', u'get'),
 (u'longed', u'get', u'dark'),
 (u'get', u'dark', u'hall'),
 (u'dark', u'hall', u'wander'),
 (u'hall', u'wander', u'among'),
 (u'wander', u'among', u'beds'),
 (u'among', u'beds', u'bright'),
 (u'beds', u'bright', u'flowers'),
 (u'bright', u'flowers', u'cool'),
 (u'flowers', u'cool', u'fountains'),
 (u'cool', u'fountains', u'could'),
 (u'fountains', u'could', u'even'),
 (u'could', u'even', u'get'),
 (u'even', u'get', u'head'),
 (u'get', u'head', u'doorway'),
 (u'head', u'doorway', u'even'),
 (u'doorway', u'even', u'head'),
 (u'even', u'head', u'would'),
 (u'head', u'would', u'go'),
 (u'would', u'go', u'thought'),
 (u'go', u'thought', u'poor'),
 (u'thought', u'poor', u'alice'),
 (u'poor', u'alice', u'would'),
 (u'alice', u'would', u'little'),
 (u'would', u'little', u'use'),
 (u'little', u'use', u'without'),
 (u'use', u'without', u'shoulders'),
 (u'without', u'shoulders', u'oh'),
 (u'shoulders', u'oh', u'wish'),
 (u'oh', u'wish', u'could'),
 (u'wish', u'could', u'shut'),
 (u'could', u'shut', u'like'),
 (u'shut', u'like', u'telescope'),
 (u'like', u'telescope', u'think'),
 (u'telescope', u'think', u'could'),
 (u'think', u'could', u'knew'),
 (u'could', u'knew', u'begin'),
 (u'knew', u'begin', u'see'),
 (u'begin', u'see', u'many'),
 (u'see', u'many', u'way'),
 (u'many', u'way', u'things'),
 (u'way', u'things', u'happened'),
 (u'things', u'happened', u'lately'),
 (u'happened', u'lately', u'alice'),
 (u'lately', u'alice', u'begun'),
 (u'alice', u'begun', u'think'),
 (u'begun', u'think', u'things'),
 (u'think', u'things', u'indeed'),
 (u'things', u'indeed', u'really'),
 (u'indeed', u'really', u'impossible'),
 (u'really', u'impossible', u'seemed'),
 (u'impossible', u'seemed', u'use'),
 (u'seemed', u'use', u'waiting'),
 (u'use', u'waiting', u'little'),
 (u'waiting', u'little', u'door'),
 (u'little', u'door', u'went'),
 (u'door', u'went', u'back'),
 (u'went', u'back', u'table'),
 (u'back', u'table', u'half'),
 (u'table', u'half', u'hoping'),
 (u'half', u'hoping', u'might'),
 (u'hoping', u'might', u'find'),
 (u'might', u'find', u'another'),
 (u'find', u'another', u'key'),
 (u'another', u'key', u'rate'),
 (u'key', u'rate', u'book'),
 (u'rate', u'book', u'rules'),
 (u'book', u'rules', u'shutting'),
 (u'rules', u'shutting', u'people'),
 (u'shutting', u'people', u'like'),
 (u'people', u'like', u'telescopes'),
 (u'like', u'telescopes', u'time'),
 (u'telescopes', u'time', u'found'),
 (u'time', u'found', u'little'),
 (u'found', u'little', u'bottle'),
 (u'little', u'bottle', u'certainly'),
 (u'bottle', u'certainly', u'said'),
 (u'certainly', u'said', u'alice'),
 (u'said', u'alice', u'round'),
 (u'alice', u'round', u'neck'),
 (u'round', u'neck', u'bottle'),
 (u'neck', u'bottle', u'paper'),
 (u'bottle', u'paper', u'label'),
 (u'paper', u'label', u'words'),
 (u'label', u'words', u'drink'),
 (u'words', u'drink', u'beautifully'),
 (u'drink', u'beautifully', u'printed'),
 (u'beautifully', u'printed', u'large'),
 (u'printed', u'large', u'letters'),
 (u'large', u'letters', u'well'),
 (u'letters', u'well', u'say'),
 (u'well', u'say', u'drink'),
 (u'say', u'drink', u'wise'),
 (u'drink', u'wise', u'little'),
 (u'wise', u'little', u'alice'),
 (u'little', u'alice', u'going'),
 (u'alice', u'going', u'hurry'),
 (u'going', u'hurry', u'll'),
 (u'hurry', u'll', u'look'),
 (u'll', u'look', u'first'),
 (u'look', u'first', u'said'),
 (u'first', u'said', u'see'),
 (u'said', u'see', u'whether'),
 (u'see', u'whether', u'marked'),
 (u'whether', u'marked', u'poison'),
 (u'marked', u'poison', u'read'),
 (u'poison', u'read', u'several'),
 (u'read', u'several', u'nice'),
 (u'several', u'nice', u'little'),
 (u'nice', u'little', u'histories'),
 (u'little', u'histories', u'children'),
 (u'histories', u'children', u'got'),
 (u'children', u'got', u'burnt'),
 (u'got', u'burnt', u'eaten'),
 (u'burnt', u'eaten', u'wild'),
 (u'eaten', u'wild', u'beasts'),
 (u'wild', u'beasts', u'unpleasant'),
 (u'beasts', u'unpleasant', u'things'),
 (u'unpleasant', u'things', u'would'),
 (u'things', u'would', u'remember'),
 (u'would', u'remember', u'simple'),
 (u'remember', u'simple', u'rules'),
 (u'simple', u'rules', u'friends'),
 (u'rules', u'friends', u'taught'),
 (u'friends', u'taught', u'red'),
 (u'taught', u'red', u'hot'),
 (u'red', u'hot', u'poker'),
 (u'hot', u'poker', u'burn'),
 (u'poker', u'burn', u'hold'),
 (u'burn', u'hold', u'long'),
 (u'hold', u'long', u'cut'),
 (u'long', u'cut', u'finger'),
 (u'cut', u'finger', u'deeply'),
 (u'finger', u'deeply', u'knife'),
 (u'deeply', u'knife', u'usually'),
 (u'knife', u'usually', u'bleeds'),
 (u'usually', u'bleeds', u'never'),
 (u'bleeds', u'never', u'forgotten'),
 (u'never', u'forgotten', u'drink'),
 (u'forgotten', u'drink', u'much'),
 (u'drink', u'much', u'bottle'),
 (u'much', u'bottle', u'marked'),
 (u'bottle', u'marked', u'poison'),
 (u'marked', u'poison', u'almost'),
 (u'poison', u'almost', u'certain'),
 (u'almost', u'certain', u'disagree'),
 (u'certain', u'disagree', u'sooner'),
 (u'disagree', u'sooner', u'later'),
 (u'sooner', u'later', u'however'),
 (u'later', u'however', u'bottle'),
 (u'however', u'bottle', u'marked'),
 (u'bottle', u'marked', u'poison'),
 (u'marked', u'poison', u'alice'),
 (u'poison', u'alice', u'ventured'),
 (u'alice', u'ventured', u'taste'),
 (u'ventured', u'taste', u'finding'),
 (u'taste', u'finding', u'nice'),
 (u'finding', u'nice', u'fact'),
 (u'nice', u'fact', u'sort'),
 (u'fact', u'sort', u'mixed'),
 (u'sort', u'mixed', u'flavour'),
 (u'mixed', u'flavour', u'cherry'),
 (u'flavour', u'cherry', u'tart'),
 (u'cherry', u'tart', u'custard'),
 (u'tart', u'custard', u'pine'),
 (u'custard', u'pine', u'apple'),
 (u'pine', u'apple', u'roast'),
 (u'apple', u'roast', u'turkey'),
 (u'roast', u'turkey', u'toffee'),
 (u'turkey', u'toffee', u'hot'),
 (u'toffee', u'hot', u'buttered'),
 (u'hot', u'buttered', u'toast'),
 (u'buttered', u'toast', u'soon'),
 (u'toast', u'soon', u'finished'),
 (u'soon', u'finished', u'curious'),
 (u'finished', u'curious', u'feeling'),
 (u'curious', u'feeling', u'said'),
 (u'feeling', u'said', u'alice'),
 (u'said', u'alice', u'must'),
 (u'alice', u'must', u'shutting'),
 (u'must', u'shutting', u'like'),
 (u'shutting', u'like', u'telescope'),
 (u'like', u'telescope', u'indeed'),
 (u'telescope', u'indeed', u'ten'),
 (u'indeed', u'ten', u'inches'),
 (u'ten', u'inches', u'high'),
 (u'inches', u'high', u'face'),
 (u'high', u'face', u'brightened'),
 (u'face', u'brightened', u'thought'),
 (u'brightened', u'thought', u'right'),
 (u'thought', u'right', u'size'),
 (u'right', u'size', u'going'),
 (u'size', u'going', u'little'),
 (u'going', u'little', u'door'),
 (u'little', u'door', u'lovely'),
 (u'door', u'lovely', u'garden'),
 (u'lovely', u'garden', u'first'),
 (u'garden', u'first', u'however'),
 (u'first', u'however', u'waited'),
 (u'however', u'waited', u'minutes'),
 (u'waited', u'minutes', u'see'),
 (u'minutes', u'see', u'going'),
 (u'see', u'going', u'shrink'),
 (u'going', u'shrink', u'felt'),
 (u'shrink', u'felt', u'little'),
 (u'felt', u'little', u'nervous'),
 (u'little', u'nervous', u'might'),
 (u'nervous', u'might', u'end'),
 (u'might', u'end', u'know'),
 (u'end', u'know', u'said'),
 (u'know', u'said', u'alice'),
 (u'said', u'alice', u'going'),
 (u'alice', u'going', u'altogether'),
 (u'going', u'altogether', u'like'),
 (u'altogether', u'like', u'candle'),
 (u'like', u'candle', u'wonder'),
 (u'candle', u'wonder', u'like'),
 (u'wonder', u'like', u'tried'),
 (u'like', u'tried', u'fancy'),
 (u'tried', u'fancy', u'flame'),
 (u'fancy', u'flame', u'candle'),
 (u'flame', u'candle', u'like'),
 (u'candle', u'like', u'candle'),
 (u'like', u'candle', u'blown'),
 (u'candle', u'blown', u'could'),
 (u'blown', u'could', u'remember'),
 (u'could', u'remember', u'ever'),
 (u'remember', u'ever', u'seen'),
 (u'ever', u'seen', u'thing'),
 (u'seen', u'thing', u'finding'),
 (u'thing', u'finding', u'nothing'),
 (u'finding', u'nothing', u'happened'),
 (u'nothing', u'happened', u'decided'),
 (u'happened', u'decided', u'going'),
 (u'decided', u'going', u'garden'),
 (u'going', u'garden', u'alas'),
 (u'garden', u'alas', u'poor'),
 (u'alas', u'poor', u'alice'),
 (u'poor', u'alice', u'got'),
 (u'alice', u'got', u'door'),
 (u'got', u'door', u'found'),
 (u'door', u'found', u'forgotten'),
 (u'found', u'forgotten', u'little'),
 (u'forgotten', u'little', u'golden'),
 (u'little', u'golden', u'key'),
 (u'golden', u'key', u'went'),
 (u'key', u'went', u'back'),
 (u'went', u'back', u'table'),
 (u'back', u'table', u'found'),
 (u'table', u'found', u'could'),
 (u'found', u'could', u'possibly'),
 (u'could', u'possibly', u'reach'),
 (u'possibly', u'reach', u'could'),
 (u'reach', u'could', u'see'),
 (u'could', u'see', u'quite'),
 (u'see', u'quite', u'plainly'),
 (u'quite', u'plainly', u'glass'),
 (u'plainly', u'glass', u'tried'),
 (u'glass', u'tried', u'best'),
 (u'tried', u'best', u'climb'),
 (u'best', u'climb', u'one'),
 (u'climb', u'one', u'legs'),
 (u'one', u'legs', u'table'),
 (u'legs', u'table', u'slippery'),
 (u'table', u'slippery', u'tired'),
 (u'slippery', u'tired', u'trying'),
 (u'tired', u'trying', u'poor'),
 (u'trying', u'poor', u'little'),
 (u'poor', u'little', u'thing'),
 (u'little', u'thing', u'sat'),
 (u'thing', u'sat', u'cried'),
 (u'sat', u'cried', u'come'),
 (u'cried', u'come', u'use'),
 (u'come', u'use', u'crying'),
 (u'use', u'crying', u'like'),
 (u'crying', u'like', u'said'),
 (u'like', u'said', u'alice'),
 (u'said', u'alice', u'rather'),
 (u'alice', u'rather', u'sharply'),
 (u'rather', u'sharply', u'advise'),
 (u'sharply', u'advise', u'leave'),
 (u'advise', u'leave', u'minute'),
 (u'leave', u'minute', u'generally'),
 (u'minute', u'generally', u'gave'),
 (u'generally', u'gave', u'good'),
 (u'gave', u'good', u'advice'),
 (u'good', u'advice', u'though'),
 (u'advice', u'though', u'seldom'),
 (u'though', u'seldom', u'followed'),
 (u'seldom', u'followed', u'sometimes'),
 (u'followed', u'sometimes', u'scolded'),
 (u'sometimes', u'scolded', u'severely'),
 (u'scolded', u'severely', u'bring'),
 (u'severely', u'bring', u'tears'),
 (u'bring', u'tears', u'eyes'),
 (u'tears', u'eyes', u'remembered'),
 (u'eyes', u'remembered', u'trying'),
 (u'remembered', u'trying', u'box'),
 (u'trying', u'box', u'ears'),
 (u'box', u'ears', u'cheated'),
 (u'ears', u'cheated', u'game'),
 (u'cheated', u'game', u'croquet'),
 (u'game', u'croquet', u'playing'),
 (u'croquet', u'playing', u'curious'),
 (u'playing', u'curious', u'child'),
 (u'curious', u'child', u'fond'),
 (u'child', u'fond', u'pretending'),
 (u'fond', u'pretending', u'two'),
 (u'pretending', u'two', u'people'),
 (u'two', u'people', u'use'),
 (u'people', u'use', u'thought'),
 (u'use', u'thought', u'poor'),
 (u'thought', u'poor', u'alice'),
 (u'poor', u'alice', u'pretend'),
 (u'alice', u'pretend', u'two'),
 (u'pretend', u'two', u'people'),
 (u'two', u'people', u'hardly'),
 (u'people', u'hardly', u'enough'),
 (u'hardly', u'enough', u'left'),
 (u'enough', u'left', u'make'),
 (u'left', u'make', u'one'),
 (u'make', u'one', u'respectable'),
 (u'one', u'respectable', u'person'),
 (u'respectable', u'person', u'soon'),
 (u'person', u'soon', u'eye'),
 (u'soon', u'eye', u'fell'),
 (u'eye', u'fell', u'little'),
 (u'fell', u'little', u'glass'),
 (u'little', u'glass', u'box'),
 (u'glass', u'box', u'lying'),
 (u'box', u'lying', u'table'),
 (u'lying', u'table', u'opened'),
 (u'table', u'opened', u'found'),
 (u'opened', u'found', u'small'),
 (u'found', u'small', u'cake'),
 (u'small', u'cake', u'words'),
 (u'cake', u'words', u'eat'),
 (u'words', u'eat', u'beautifully'),
 (u'eat', u'beautifully', u'marked'),
 (u'beautifully', u'marked', u'currants'),
 (u'marked', u'currants', u'well'),
 (u'currants', u'well', u'll'),
 (u'well', u'll', u'eat'),
 (u'll', u'eat', u'said'),
 (u'eat', u'said', u'alice'),
 (u'said', u'alice', u'makes'),
 (u'alice', u'makes', u'grow'),
 (u'makes', u'grow', u'larger'),
 (u'grow', u'larger', u'reach'),
 (u'larger', u'reach', u'key'),
 (u'reach', u'key', u'makes'),
 (u'key', u'makes', u'grow'),
 (u'makes', u'grow', u'smaller'),
 (u'grow', u'smaller', u'creep'),
 (u'smaller', u'creep', u'door'),
 (u'creep', u'door', u'either'),
 (u'door', u'either', u'way'),
 (u'either', u'way', u'll'),
 (u'way', u'll', u'get'),
 (u'll', u'get', u'garden'),
 (u'get', u'garden', u'care'),
 (u'garden', u'care', u'happens'),
 (u'care', u'happens', u'ate'),
 (u'happens', u'ate', u'little'),
 (u'ate', u'little', u'bit'),
 (u'little', u'bit', u'said'),
 (u'bit', u'said', u'anxiously'),
 (u'said', u'anxiously', u'way'),
 (u'anxiously', u'way', u'way'),
 (u'way', u'way', u'holding'),
 (u'way', u'holding', u'hand'),
 (u'holding', u'hand', u'top'),
 (u'hand', u'top', u'head'),
 (u'top', u'head', u'feel'),
 (u'head', u'feel', u'way'),
 (u'feel', u'way', u'growing'),
 (u'way', u'growing', u'quite'),
 (u'growing', u'quite', u'surprised'),
 (u'quite', u'surprised', u'find'),
 (u'surprised', u'find', u'remained'),
 (u'find', u'remained', u'size'),
 (u'remained', u'size', u'sure'),
 (u'size', u'sure', u'generally'),
 (u'sure', u'generally', u'happens'),
 (u'generally', u'happens', u'one'),
 (u'happens', u'one', u'eats'),
 (u'one', u'eats', u'cake'),
 (u'eats', u'cake', u'alice'),
 (u'cake', u'alice', u'got'),
 (u'alice', u'got', u'much'),
 (u'got', u'much', u'way'),
 (u'much', u'way', u'expecting'),
 (u'way', u'expecting', u'nothing'),
 (u'expecting', u'nothing', u'way'),
 (u'nothing', u'way', u'things'),
 (u'way', u'things', u'happen'),
 (u'things', u'happen', u'seemed'),
 (u'happen', u'seemed', u'quite'),
 (u'seemed', u'quite', u'dull'),
 (u'quite', u'dull', u'stupid'),
 (u'dull', u'stupid', u'life'),
 (u'stupid', u'life', u'go'),
 (u'life', u'go', u'common'),
 (u'go', u'common', u'way'),
 (u'common', u'way', u'set'),
 (u'way', u'set', u'work'),
 (u'set', u'work', u'soon'),
 (u'work', u'soon', u'finished'),
 (u'soon', u'finished', u'cake'),
 (u'finished', u'cake', u'chapter'),
 (u'cake', u'chapter', u'x'),
 (u'chapter', u'x', u'lobster'),
 (u'x', u'lobster', u'quadrille'),
 (u'lobster', u'quadrille', u'mock'),
 (u'quadrille', u'mock', u'turtle'),
 (u'mock', u'turtle', u'sighed'),
 (u'turtle', u'sighed', u'deeply'),
 (u'sighed', u'deeply', u'drew'),
 (u'deeply', u'drew', u'back'),
 (u'drew', u'back', u'one'),
 (u'back', u'one', u'flapper'),
 (u'one', u'flapper', u'across'),
 (u'flapper', u'across', u'eyes'),
 ...]

In [322]:
[x for x in nltk.ngrams(corpus,7)]


Out[322]:
[(u'chapter', u'rabbit', u'hole', u'alice', u'beginning', u'get', u'tired'),
 (u'rabbit', u'hole', u'alice', u'beginning', u'get', u'tired', u'sitting'),
 (u'hole', u'alice', u'beginning', u'get', u'tired', u'sitting', u'sister'),
 (u'alice', u'beginning', u'get', u'tired', u'sitting', u'sister', u'bank'),
 (u'beginning', u'get', u'tired', u'sitting', u'sister', u'bank', u'nothing'),
 (u'get', u'tired', u'sitting', u'sister', u'bank', u'nothing', u'twice'),
 (u'tired', u'sitting', u'sister', u'bank', u'nothing', u'twice', u'peeped'),
 (u'sitting', u'sister', u'bank', u'nothing', u'twice', u'peeped', u'book'),
 (u'sister', u'bank', u'nothing', u'twice', u'peeped', u'book', u'sister'),
 (u'bank', u'nothing', u'twice', u'peeped', u'book', u'sister', u'reading'),
 (u'nothing',
  u'twice',
  u'peeped',
  u'book',
  u'sister',
  u'reading',
  u'pictures'),
 (u'twice',
  u'peeped',
  u'book',
  u'sister',
  u'reading',
  u'pictures',
  u'conversations'),
 (u'peeped',
  u'book',
  u'sister',
  u'reading',
  u'pictures',
  u'conversations',
  u'use'),
 (u'book',
  u'sister',
  u'reading',
  u'pictures',
  u'conversations',
  u'use',
  u'book'),
 (u'sister',
  u'reading',
  u'pictures',
  u'conversations',
  u'use',
  u'book',
  u'thought'),
 (u'reading',
  u'pictures',
  u'conversations',
  u'use',
  u'book',
  u'thought',
  u'alice'),
 (u'pictures',
  u'conversations',
  u'use',
  u'book',
  u'thought',
  u'alice',
  u'without'),
 (u'conversations',
  u'use',
  u'book',
  u'thought',
  u'alice',
  u'without',
  u'pictures'),
 (u'use',
  u'book',
  u'thought',
  u'alice',
  u'without',
  u'pictures',
  u'conversations'),
 (u'book',
  u'thought',
  u'alice',
  u'without',
  u'pictures',
  u'conversations',
  u'considering'),
 (u'thought',
  u'alice',
  u'without',
  u'pictures',
  u'conversations',
  u'considering',
  u'mind'),
 (u'alice',
  u'without',
  u'pictures',
  u'conversations',
  u'considering',
  u'mind',
  u'well'),
 (u'without',
  u'pictures',
  u'conversations',
  u'considering',
  u'mind',
  u'well',
  u'could'),
 (u'pictures',
  u'conversations',
  u'considering',
  u'mind',
  u'well',
  u'could',
  u'hot'),
 (u'conversations',
  u'considering',
  u'mind',
  u'well',
  u'could',
  u'hot',
  u'day'),
 (u'considering', u'mind', u'well', u'could', u'hot', u'day', u'made'),
 (u'mind', u'well', u'could', u'hot', u'day', u'made', u'feel'),
 (u'well', u'could', u'hot', u'day', u'made', u'feel', u'sleepy'),
 (u'could', u'hot', u'day', u'made', u'feel', u'sleepy', u'stupid'),
 (u'hot', u'day', u'made', u'feel', u'sleepy', u'stupid', u'whether'),
 (u'day', u'made', u'feel', u'sleepy', u'stupid', u'whether', u'pleasure'),
 (u'made', u'feel', u'sleepy', u'stupid', u'whether', u'pleasure', u'making'),
 (u'feel', u'sleepy', u'stupid', u'whether', u'pleasure', u'making', u'daisy'),
 (u'sleepy',
  u'stupid',
  u'whether',
  u'pleasure',
  u'making',
  u'daisy',
  u'chain'),
 (u'stupid', u'whether', u'pleasure', u'making', u'daisy', u'chain', u'would'),
 (u'whether', u'pleasure', u'making', u'daisy', u'chain', u'would', u'worth'),
 (u'pleasure', u'making', u'daisy', u'chain', u'would', u'worth', u'trouble'),
 (u'making', u'daisy', u'chain', u'would', u'worth', u'trouble', u'getting'),
 (u'daisy', u'chain', u'would', u'worth', u'trouble', u'getting', u'picking'),
 (u'chain',
  u'would',
  u'worth',
  u'trouble',
  u'getting',
  u'picking',
  u'daisies'),
 (u'would',
  u'worth',
  u'trouble',
  u'getting',
  u'picking',
  u'daisies',
  u'suddenly'),
 (u'worth',
  u'trouble',
  u'getting',
  u'picking',
  u'daisies',
  u'suddenly',
  u'white'),
 (u'trouble',
  u'getting',
  u'picking',
  u'daisies',
  u'suddenly',
  u'white',
  u'rabbit'),
 (u'getting',
  u'picking',
  u'daisies',
  u'suddenly',
  u'white',
  u'rabbit',
  u'pink'),
 (u'picking', u'daisies', u'suddenly', u'white', u'rabbit', u'pink', u'eyes'),
 (u'daisies', u'suddenly', u'white', u'rabbit', u'pink', u'eyes', u'ran'),
 (u'suddenly', u'white', u'rabbit', u'pink', u'eyes', u'ran', u'close'),
 (u'white', u'rabbit', u'pink', u'eyes', u'ran', u'close', u'nothing'),
 (u'rabbit', u'pink', u'eyes', u'ran', u'close', u'nothing', u'remarkable'),
 (u'pink', u'eyes', u'ran', u'close', u'nothing', u'remarkable', u'alice'),
 (u'eyes', u'ran', u'close', u'nothing', u'remarkable', u'alice', u'think'),
 (u'ran', u'close', u'nothing', u'remarkable', u'alice', u'think', u'much'),
 (u'close', u'nothing', u'remarkable', u'alice', u'think', u'much', u'way'),
 (u'nothing', u'remarkable', u'alice', u'think', u'much', u'way', u'hear'),
 (u'remarkable', u'alice', u'think', u'much', u'way', u'hear', u'rabbit'),
 (u'alice', u'think', u'much', u'way', u'hear', u'rabbit', u'say'),
 (u'think', u'much', u'way', u'hear', u'rabbit', u'say', u'oh'),
 (u'much', u'way', u'hear', u'rabbit', u'say', u'oh', u'dear'),
 (u'way', u'hear', u'rabbit', u'say', u'oh', u'dear', u'oh'),
 (u'hear', u'rabbit', u'say', u'oh', u'dear', u'oh', u'dear'),
 (u'rabbit', u'say', u'oh', u'dear', u'oh', u'dear', u'shall'),
 (u'say', u'oh', u'dear', u'oh', u'dear', u'shall', u'late'),
 (u'oh', u'dear', u'oh', u'dear', u'shall', u'late', u'thought'),
 (u'dear', u'oh', u'dear', u'shall', u'late', u'thought', u'afterwards'),
 (u'oh', u'dear', u'shall', u'late', u'thought', u'afterwards', u'occurred'),
 (u'dear',
  u'shall',
  u'late',
  u'thought',
  u'afterwards',
  u'occurred',
  u'ought'),
 (u'shall',
  u'late',
  u'thought',
  u'afterwards',
  u'occurred',
  u'ought',
  u'wondered'),
 (u'late',
  u'thought',
  u'afterwards',
  u'occurred',
  u'ought',
  u'wondered',
  u'time'),
 (u'thought',
  u'afterwards',
  u'occurred',
  u'ought',
  u'wondered',
  u'time',
  u'seemed'),
 (u'afterwards',
  u'occurred',
  u'ought',
  u'wondered',
  u'time',
  u'seemed',
  u'quite'),
 (u'occurred',
  u'ought',
  u'wondered',
  u'time',
  u'seemed',
  u'quite',
  u'natural'),
 (u'ought', u'wondered', u'time', u'seemed', u'quite', u'natural', u'rabbit'),
 (u'wondered',
  u'time',
  u'seemed',
  u'quite',
  u'natural',
  u'rabbit',
  u'actually'),
 (u'time', u'seemed', u'quite', u'natural', u'rabbit', u'actually', u'took'),
 (u'seemed', u'quite', u'natural', u'rabbit', u'actually', u'took', u'watch'),
 (u'quite',
  u'natural',
  u'rabbit',
  u'actually',
  u'took',
  u'watch',
  u'waistcoat'),
 (u'natural',
  u'rabbit',
  u'actually',
  u'took',
  u'watch',
  u'waistcoat',
  u'pocket'),
 (u'rabbit',
  u'actually',
  u'took',
  u'watch',
  u'waistcoat',
  u'pocket',
  u'looked'),
 (u'actually',
  u'took',
  u'watch',
  u'waistcoat',
  u'pocket',
  u'looked',
  u'hurried'),
 (u'took', u'watch', u'waistcoat', u'pocket', u'looked', u'hurried', u'alice'),
 (u'watch',
  u'waistcoat',
  u'pocket',
  u'looked',
  u'hurried',
  u'alice',
  u'started'),
 (u'waistcoat',
  u'pocket',
  u'looked',
  u'hurried',
  u'alice',
  u'started',
  u'feet'),
 (u'pocket', u'looked', u'hurried', u'alice', u'started', u'feet', u'flashed'),
 (u'looked', u'hurried', u'alice', u'started', u'feet', u'flashed', u'across'),
 (u'hurried', u'alice', u'started', u'feet', u'flashed', u'across', u'mind'),
 (u'alice', u'started', u'feet', u'flashed', u'across', u'mind', u'never'),
 (u'started', u'feet', u'flashed', u'across', u'mind', u'never', u'seen'),
 (u'feet', u'flashed', u'across', u'mind', u'never', u'seen', u'rabbit'),
 (u'flashed', u'across', u'mind', u'never', u'seen', u'rabbit', u'either'),
 (u'across', u'mind', u'never', u'seen', u'rabbit', u'either', u'waistcoat'),
 (u'mind', u'never', u'seen', u'rabbit', u'either', u'waistcoat', u'pocket'),
 (u'never', u'seen', u'rabbit', u'either', u'waistcoat', u'pocket', u'watch'),
 (u'seen', u'rabbit', u'either', u'waistcoat', u'pocket', u'watch', u'take'),
 (u'rabbit',
  u'either',
  u'waistcoat',
  u'pocket',
  u'watch',
  u'take',
  u'burning'),
 (u'either',
  u'waistcoat',
  u'pocket',
  u'watch',
  u'take',
  u'burning',
  u'curiosity'),
 (u'waistcoat',
  u'pocket',
  u'watch',
  u'take',
  u'burning',
  u'curiosity',
  u'ran'),
 (u'pocket', u'watch', u'take', u'burning', u'curiosity', u'ran', u'across'),
 (u'watch', u'take', u'burning', u'curiosity', u'ran', u'across', u'field'),
 (u'take',
  u'burning',
  u'curiosity',
  u'ran',
  u'across',
  u'field',
  u'fortunately'),
 (u'burning',
  u'curiosity',
  u'ran',
  u'across',
  u'field',
  u'fortunately',
  u'time'),
 (u'curiosity', u'ran', u'across', u'field', u'fortunately', u'time', u'see'),
 (u'ran', u'across', u'field', u'fortunately', u'time', u'see', u'pop'),
 (u'across', u'field', u'fortunately', u'time', u'see', u'pop', u'large'),
 (u'field', u'fortunately', u'time', u'see', u'pop', u'large', u'rabbit'),
 (u'fortunately', u'time', u'see', u'pop', u'large', u'rabbit', u'hole'),
 (u'time', u'see', u'pop', u'large', u'rabbit', u'hole', u'hedge'),
 (u'see', u'pop', u'large', u'rabbit', u'hole', u'hedge', u'another'),
 (u'pop', u'large', u'rabbit', u'hole', u'hedge', u'another', u'moment'),
 (u'large', u'rabbit', u'hole', u'hedge', u'another', u'moment', u'went'),
 (u'rabbit', u'hole', u'hedge', u'another', u'moment', u'went', u'alice'),
 (u'hole', u'hedge', u'another', u'moment', u'went', u'alice', u'never'),
 (u'hedge',
  u'another',
  u'moment',
  u'went',
  u'alice',
  u'never',
  u'considering'),
 (u'another',
  u'moment',
  u'went',
  u'alice',
  u'never',
  u'considering',
  u'world'),
 (u'moment', u'went', u'alice', u'never', u'considering', u'world', u'get'),
 (u'went', u'alice', u'never', u'considering', u'world', u'get', u'rabbit'),
 (u'alice', u'never', u'considering', u'world', u'get', u'rabbit', u'hole'),
 (u'never', u'considering', u'world', u'get', u'rabbit', u'hole', u'went'),
 (u'considering', u'world', u'get', u'rabbit', u'hole', u'went', u'straight'),
 (u'world', u'get', u'rabbit', u'hole', u'went', u'straight', u'like'),
 (u'get', u'rabbit', u'hole', u'went', u'straight', u'like', u'tunnel'),
 (u'rabbit', u'hole', u'went', u'straight', u'like', u'tunnel', u'way'),
 (u'hole', u'went', u'straight', u'like', u'tunnel', u'way', u'dipped'),
 (u'went', u'straight', u'like', u'tunnel', u'way', u'dipped', u'suddenly'),
 (u'straight',
  u'like',
  u'tunnel',
  u'way',
  u'dipped',
  u'suddenly',
  u'suddenly'),
 (u'like', u'tunnel', u'way', u'dipped', u'suddenly', u'suddenly', u'alice'),
 (u'tunnel', u'way', u'dipped', u'suddenly', u'suddenly', u'alice', u'moment'),
 (u'way', u'dipped', u'suddenly', u'suddenly', u'alice', u'moment', u'think'),
 (u'dipped',
  u'suddenly',
  u'suddenly',
  u'alice',
  u'moment',
  u'think',
  u'stopping'),
 (u'suddenly',
  u'suddenly',
  u'alice',
  u'moment',
  u'think',
  u'stopping',
  u'found'),
 (u'suddenly',
  u'alice',
  u'moment',
  u'think',
  u'stopping',
  u'found',
  u'falling'),
 (u'alice', u'moment', u'think', u'stopping', u'found', u'falling', u'deep'),
 (u'moment', u'think', u'stopping', u'found', u'falling', u'deep', u'well'),
 (u'think', u'stopping', u'found', u'falling', u'deep', u'well', u'either'),
 (u'stopping', u'found', u'falling', u'deep', u'well', u'either', u'well'),
 (u'found', u'falling', u'deep', u'well', u'either', u'well', u'deep'),
 (u'falling', u'deep', u'well', u'either', u'well', u'deep', u'fell'),
 (u'deep', u'well', u'either', u'well', u'deep', u'fell', u'slowly'),
 (u'well', u'either', u'well', u'deep', u'fell', u'slowly', u'plenty'),
 (u'either', u'well', u'deep', u'fell', u'slowly', u'plenty', u'time'),
 (u'well', u'deep', u'fell', u'slowly', u'plenty', u'time', u'went'),
 (u'deep', u'fell', u'slowly', u'plenty', u'time', u'went', u'look'),
 (u'fell', u'slowly', u'plenty', u'time', u'went', u'look', u'wonder'),
 (u'slowly', u'plenty', u'time', u'went', u'look', u'wonder', u'going'),
 (u'plenty', u'time', u'went', u'look', u'wonder', u'going', u'happen'),
 (u'time', u'went', u'look', u'wonder', u'going', u'happen', u'next'),
 (u'went', u'look', u'wonder', u'going', u'happen', u'next', u'first'),
 (u'look', u'wonder', u'going', u'happen', u'next', u'first', u'tried'),
 (u'wonder', u'going', u'happen', u'next', u'first', u'tried', u'look'),
 (u'going', u'happen', u'next', u'first', u'tried', u'look', u'make'),
 (u'happen', u'next', u'first', u'tried', u'look', u'make', u'coming'),
 (u'next', u'first', u'tried', u'look', u'make', u'coming', u'dark'),
 (u'first', u'tried', u'look', u'make', u'coming', u'dark', u'see'),
 (u'tried', u'look', u'make', u'coming', u'dark', u'see', u'anything'),
 (u'look', u'make', u'coming', u'dark', u'see', u'anything', u'looked'),
 (u'make', u'coming', u'dark', u'see', u'anything', u'looked', u'sides'),
 (u'coming', u'dark', u'see', u'anything', u'looked', u'sides', u'well'),
 (u'dark', u'see', u'anything', u'looked', u'sides', u'well', u'noticed'),
 (u'see', u'anything', u'looked', u'sides', u'well', u'noticed', u'filled'),
 (u'anything',
  u'looked',
  u'sides',
  u'well',
  u'noticed',
  u'filled',
  u'cupboards'),
 (u'looked', u'sides', u'well', u'noticed', u'filled', u'cupboards', u'book'),
 (u'sides', u'well', u'noticed', u'filled', u'cupboards', u'book', u'shelves'),
 (u'well', u'noticed', u'filled', u'cupboards', u'book', u'shelves', u'saw'),
 (u'noticed', u'filled', u'cupboards', u'book', u'shelves', u'saw', u'maps'),
 (u'filled', u'cupboards', u'book', u'shelves', u'saw', u'maps', u'pictures'),
 (u'cupboards', u'book', u'shelves', u'saw', u'maps', u'pictures', u'hung'),
 (u'book', u'shelves', u'saw', u'maps', u'pictures', u'hung', u'upon'),
 (u'shelves', u'saw', u'maps', u'pictures', u'hung', u'upon', u'pegs'),
 (u'saw', u'maps', u'pictures', u'hung', u'upon', u'pegs', u'took'),
 (u'maps', u'pictures', u'hung', u'upon', u'pegs', u'took', u'jar'),
 (u'pictures', u'hung', u'upon', u'pegs', u'took', u'jar', u'one'),
 (u'hung', u'upon', u'pegs', u'took', u'jar', u'one', u'shelves'),
 (u'upon', u'pegs', u'took', u'jar', u'one', u'shelves', u'passed'),
 (u'pegs', u'took', u'jar', u'one', u'shelves', u'passed', u'labelled'),
 (u'took', u'jar', u'one', u'shelves', u'passed', u'labelled', u'orange'),
 (u'jar', u'one', u'shelves', u'passed', u'labelled', u'orange', u'marmalade'),
 (u'one',
  u'shelves',
  u'passed',
  u'labelled',
  u'orange',
  u'marmalade',
  u'great'),
 (u'shelves',
  u'passed',
  u'labelled',
  u'orange',
  u'marmalade',
  u'great',
  u'disappointment'),
 (u'passed',
  u'labelled',
  u'orange',
  u'marmalade',
  u'great',
  u'disappointment',
  u'empty'),
 (u'labelled',
  u'orange',
  u'marmalade',
  u'great',
  u'disappointment',
  u'empty',
  u'like'),
 (u'orange',
  u'marmalade',
  u'great',
  u'disappointment',
  u'empty',
  u'like',
  u'drop'),
 (u'marmalade',
  u'great',
  u'disappointment',
  u'empty',
  u'like',
  u'drop',
  u'jar'),
 (u'great', u'disappointment', u'empty', u'like', u'drop', u'jar', u'fear'),
 (u'disappointment', u'empty', u'like', u'drop', u'jar', u'fear', u'killing'),
 (u'empty', u'like', u'drop', u'jar', u'fear', u'killing', u'somebody'),
 (u'like', u'drop', u'jar', u'fear', u'killing', u'somebody', u'managed'),
 (u'drop', u'jar', u'fear', u'killing', u'somebody', u'managed', u'put'),
 (u'jar', u'fear', u'killing', u'somebody', u'managed', u'put', u'one'),
 (u'fear', u'killing', u'somebody', u'managed', u'put', u'one', u'cupboards'),
 (u'killing', u'somebody', u'managed', u'put', u'one', u'cupboards', u'fell'),
 (u'somebody', u'managed', u'put', u'one', u'cupboards', u'fell', u'past'),
 (u'managed', u'put', u'one', u'cupboards', u'fell', u'past', u'well'),
 (u'put', u'one', u'cupboards', u'fell', u'past', u'well', u'thought'),
 (u'one', u'cupboards', u'fell', u'past', u'well', u'thought', u'alice'),
 (u'cupboards', u'fell', u'past', u'well', u'thought', u'alice', u'fall'),
 (u'fell', u'past', u'well', u'thought', u'alice', u'fall', u'shall'),
 (u'past', u'well', u'thought', u'alice', u'fall', u'shall', u'think'),
 (u'well', u'thought', u'alice', u'fall', u'shall', u'think', u'nothing'),
 (u'thought', u'alice', u'fall', u'shall', u'think', u'nothing', u'tumbling'),
 (u'alice', u'fall', u'shall', u'think', u'nothing', u'tumbling', u'stairs'),
 (u'fall', u'shall', u'think', u'nothing', u'tumbling', u'stairs', u'brave'),
 (u'shall', u'think', u'nothing', u'tumbling', u'stairs', u'brave', u'll'),
 (u'think', u'nothing', u'tumbling', u'stairs', u'brave', u'll', u'think'),
 (u'nothing', u'tumbling', u'stairs', u'brave', u'll', u'think', u'home'),
 (u'tumbling', u'stairs', u'brave', u'll', u'think', u'home', u'wouldn'),
 (u'stairs', u'brave', u'll', u'think', u'home', u'wouldn', u'say'),
 (u'brave', u'll', u'think', u'home', u'wouldn', u'say', u'anything'),
 (u'll', u'think', u'home', u'wouldn', u'say', u'anything', u'even'),
 (u'think', u'home', u'wouldn', u'say', u'anything', u'even', u'fell'),
 (u'home', u'wouldn', u'say', u'anything', u'even', u'fell', u'top'),
 (u'wouldn', u'say', u'anything', u'even', u'fell', u'top', u'house'),
 (u'say', u'anything', u'even', u'fell', u'top', u'house', u'likely'),
 (u'anything', u'even', u'fell', u'top', u'house', u'likely', u'true'),
 (u'even', u'fell', u'top', u'house', u'likely', u'true', u'would'),
 (u'fell', u'top', u'house', u'likely', u'true', u'would', u'fall'),
 (u'top', u'house', u'likely', u'true', u'would', u'fall', u'never'),
 (u'house', u'likely', u'true', u'would', u'fall', u'never', u'come'),
 (u'likely', u'true', u'would', u'fall', u'never', u'come', u'end'),
 (u'true', u'would', u'fall', u'never', u'come', u'end', u'wonder'),
 (u'would', u'fall', u'never', u'come', u'end', u'wonder', u'many'),
 (u'fall', u'never', u'come', u'end', u'wonder', u'many', u'miles'),
 (u'never', u'come', u'end', u'wonder', u'many', u'miles', u've'),
 (u'come', u'end', u'wonder', u'many', u'miles', u've', u'fallen'),
 (u'end', u'wonder', u'many', u'miles', u've', u'fallen', u'time'),
 (u'wonder', u'many', u'miles', u've', u'fallen', u'time', u'said'),
 (u'many', u'miles', u've', u'fallen', u'time', u'said', u'aloud'),
 (u'miles', u've', u'fallen', u'time', u'said', u'aloud', u'must'),
 (u've', u'fallen', u'time', u'said', u'aloud', u'must', u'getting'),
 (u'fallen', u'time', u'said', u'aloud', u'must', u'getting', u'somewhere'),
 (u'time', u'said', u'aloud', u'must', u'getting', u'somewhere', u'near'),
 (u'said', u'aloud', u'must', u'getting', u'somewhere', u'near', u'centre'),
 (u'aloud', u'must', u'getting', u'somewhere', u'near', u'centre', u'earth'),
 (u'must', u'getting', u'somewhere', u'near', u'centre', u'earth', u'let'),
 (u'getting', u'somewhere', u'near', u'centre', u'earth', u'let', u'see'),
 (u'somewhere', u'near', u'centre', u'earth', u'let', u'see', u'would'),
 (u'near', u'centre', u'earth', u'let', u'see', u'would', u'four'),
 (u'centre', u'earth', u'let', u'see', u'would', u'four', u'thousand'),
 (u'earth', u'let', u'see', u'would', u'four', u'thousand', u'miles'),
 (u'let', u'see', u'would', u'four', u'thousand', u'miles', u'think'),
 (u'see', u'would', u'four', u'thousand', u'miles', u'think', u'see'),
 (u'would', u'four', u'thousand', u'miles', u'think', u'see', u'alice'),
 (u'four', u'thousand', u'miles', u'think', u'see', u'alice', u'learnt'),
 (u'thousand', u'miles', u'think', u'see', u'alice', u'learnt', u'several'),
 (u'miles', u'think', u'see', u'alice', u'learnt', u'several', u'things'),
 (u'think', u'see', u'alice', u'learnt', u'several', u'things', u'sort'),
 (u'see', u'alice', u'learnt', u'several', u'things', u'sort', u'lessons'),
 (u'alice',
  u'learnt',
  u'several',
  u'things',
  u'sort',
  u'lessons',
  u'schoolroom'),
 (u'learnt',
  u'several',
  u'things',
  u'sort',
  u'lessons',
  u'schoolroom',
  u'though'),
 (u'several',
  u'things',
  u'sort',
  u'lessons',
  u'schoolroom',
  u'though',
  u'good'),
 (u'things',
  u'sort',
  u'lessons',
  u'schoolroom',
  u'though',
  u'good',
  u'opportunity'),
 (u'sort',
  u'lessons',
  u'schoolroom',
  u'though',
  u'good',
  u'opportunity',
  u'showing'),
 (u'lessons',
  u'schoolroom',
  u'though',
  u'good',
  u'opportunity',
  u'showing',
  u'knowledge'),
 (u'schoolroom',
  u'though',
  u'good',
  u'opportunity',
  u'showing',
  u'knowledge',
  u'one'),
 (u'though',
  u'good',
  u'opportunity',
  u'showing',
  u'knowledge',
  u'one',
  u'listen'),
 (u'good',
  u'opportunity',
  u'showing',
  u'knowledge',
  u'one',
  u'listen',
  u'still'),
 (u'opportunity',
  u'showing',
  u'knowledge',
  u'one',
  u'listen',
  u'still',
  u'good'),
 (u'showing', u'knowledge', u'one', u'listen', u'still', u'good', u'practice'),
 (u'knowledge', u'one', u'listen', u'still', u'good', u'practice', u'say'),
 (u'one', u'listen', u'still', u'good', u'practice', u'say', u'yes'),
 (u'listen', u'still', u'good', u'practice', u'say', u'yes', u'right'),
 (u'still', u'good', u'practice', u'say', u'yes', u'right', u'distance'),
 (u'good', u'practice', u'say', u'yes', u'right', u'distance', u'wonder'),
 (u'practice', u'say', u'yes', u'right', u'distance', u'wonder', u'latitude'),
 (u'say', u'yes', u'right', u'distance', u'wonder', u'latitude', u'longitude'),
 (u'yes', u'right', u'distance', u'wonder', u'latitude', u'longitude', u've'),
 (u'right', u'distance', u'wonder', u'latitude', u'longitude', u've', u'got'),
 (u'distance', u'wonder', u'latitude', u'longitude', u've', u'got', u'alice'),
 (u'wonder', u'latitude', u'longitude', u've', u'got', u'alice', u'idea'),
 (u'latitude', u'longitude', u've', u'got', u'alice', u'idea', u'latitude'),
 (u'longitude', u've', u'got', u'alice', u'idea', u'latitude', u'longitude'),
 (u've', u'got', u'alice', u'idea', u'latitude', u'longitude', u'either'),
 (u'got', u'alice', u'idea', u'latitude', u'longitude', u'either', u'thought'),
 (u'alice',
  u'idea',
  u'latitude',
  u'longitude',
  u'either',
  u'thought',
  u'nice'),
 (u'idea',
  u'latitude',
  u'longitude',
  u'either',
  u'thought',
  u'nice',
  u'grand'),
 (u'latitude',
  u'longitude',
  u'either',
  u'thought',
  u'nice',
  u'grand',
  u'words'),
 (u'longitude', u'either', u'thought', u'nice', u'grand', u'words', u'say'),
 (u'either', u'thought', u'nice', u'grand', u'words', u'say', u'presently'),
 (u'thought', u'nice', u'grand', u'words', u'say', u'presently', u'began'),
 (u'nice', u'grand', u'words', u'say', u'presently', u'began', u'wonder'),
 (u'grand', u'words', u'say', u'presently', u'began', u'wonder', u'shall'),
 (u'words', u'say', u'presently', u'began', u'wonder', u'shall', u'fall'),
 (u'say', u'presently', u'began', u'wonder', u'shall', u'fall', u'right'),
 (u'presently', u'began', u'wonder', u'shall', u'fall', u'right', u'earth'),
 (u'began', u'wonder', u'shall', u'fall', u'right', u'earth', u'funny'),
 (u'wonder', u'shall', u'fall', u'right', u'earth', u'funny', u'll'),
 (u'shall', u'fall', u'right', u'earth', u'funny', u'll', u'seem'),
 (u'fall', u'right', u'earth', u'funny', u'll', u'seem', u'come'),
 (u'right', u'earth', u'funny', u'll', u'seem', u'come', u'among'),
 (u'earth', u'funny', u'll', u'seem', u'come', u'among', u'people'),
 (u'funny', u'll', u'seem', u'come', u'among', u'people', u'walk'),
 (u'll', u'seem', u'come', u'among', u'people', u'walk', u'heads'),
 (u'seem', u'come', u'among', u'people', u'walk', u'heads', u'downward'),
 (u'come',
  u'among',
  u'people',
  u'walk',
  u'heads',
  u'downward',
  u'antipathies'),
 (u'among',
  u'people',
  u'walk',
  u'heads',
  u'downward',
  u'antipathies',
  u'think'),
 (u'people',
  u'walk',
  u'heads',
  u'downward',
  u'antipathies',
  u'think',
  u'rather'),
 (u'walk',
  u'heads',
  u'downward',
  u'antipathies',
  u'think',
  u'rather',
  u'glad'),
 (u'heads', u'downward', u'antipathies', u'think', u'rather', u'glad', u'one'),
 (u'downward',
  u'antipathies',
  u'think',
  u'rather',
  u'glad',
  u'one',
  u'listening'),
 (u'antipathies', u'think', u'rather', u'glad', u'one', u'listening', u'time'),
 (u'think', u'rather', u'glad', u'one', u'listening', u'time', u'didn'),
 (u'rather', u'glad', u'one', u'listening', u'time', u'didn', u'sound'),
 (u'glad', u'one', u'listening', u'time', u'didn', u'sound', u'right'),
 (u'one', u'listening', u'time', u'didn', u'sound', u'right', u'word'),
 (u'listening', u'time', u'didn', u'sound', u'right', u'word', u'shall'),
 (u'time', u'didn', u'sound', u'right', u'word', u'shall', u'ask'),
 (u'didn', u'sound', u'right', u'word', u'shall', u'ask', u'name'),
 (u'sound', u'right', u'word', u'shall', u'ask', u'name', u'country'),
 (u'right', u'word', u'shall', u'ask', u'name', u'country', u'know'),
 (u'word', u'shall', u'ask', u'name', u'country', u'know', u'please'),
 (u'shall', u'ask', u'name', u'country', u'know', u'please', u'ma'),
 (u'ask', u'name', u'country', u'know', u'please', u'ma', u'new'),
 (u'name', u'country', u'know', u'please', u'ma', u'new', u'zealand'),
 (u'country', u'know', u'please', u'ma', u'new', u'zealand', u'australia'),
 (u'know', u'please', u'ma', u'new', u'zealand', u'australia', u'tried'),
 (u'please', u'ma', u'new', u'zealand', u'australia', u'tried', u'curtsey'),
 (u'ma', u'new', u'zealand', u'australia', u'tried', u'curtsey', u'spoke'),
 (u'new', u'zealand', u'australia', u'tried', u'curtsey', u'spoke', u'fancy'),
 (u'zealand',
  u'australia',
  u'tried',
  u'curtsey',
  u'spoke',
  u'fancy',
  u'curtseying'),
 (u'australia',
  u'tried',
  u'curtsey',
  u'spoke',
  u'fancy',
  u'curtseying',
  u're'),
 (u'tried', u'curtsey', u'spoke', u'fancy', u'curtseying', u're', u'falling'),
 (u'curtsey', u'spoke', u'fancy', u'curtseying', u're', u'falling', u'air'),
 (u'spoke', u'fancy', u'curtseying', u're', u'falling', u'air', u'think'),
 (u'fancy', u'curtseying', u're', u'falling', u'air', u'think', u'could'),
 (u'curtseying', u're', u'falling', u'air', u'think', u'could', u'manage'),
 (u're', u'falling', u'air', u'think', u'could', u'manage', u'ignorant'),
 (u'falling', u'air', u'think', u'could', u'manage', u'ignorant', u'little'),
 (u'air', u'think', u'could', u'manage', u'ignorant', u'little', u'girl'),
 (u'think', u'could', u'manage', u'ignorant', u'little', u'girl', u'll'),
 (u'could', u'manage', u'ignorant', u'little', u'girl', u'll', u'think'),
 (u'manage', u'ignorant', u'little', u'girl', u'll', u'think', u'asking'),
 (u'ignorant', u'little', u'girl', u'll', u'think', u'asking', u'll'),
 (u'little', u'girl', u'll', u'think', u'asking', u'll', u'never'),
 (u'girl', u'll', u'think', u'asking', u'll', u'never', u'ask'),
 (u'll', u'think', u'asking', u'll', u'never', u'ask', u'perhaps'),
 (u'think', u'asking', u'll', u'never', u'ask', u'perhaps', u'shall'),
 (u'asking', u'll', u'never', u'ask', u'perhaps', u'shall', u'see'),
 (u'll', u'never', u'ask', u'perhaps', u'shall', u'see', u'written'),
 (u'never', u'ask', u'perhaps', u'shall', u'see', u'written', u'somewhere'),
 (u'ask', u'perhaps', u'shall', u'see', u'written', u'somewhere', u'nothing'),
 (u'perhaps', u'shall', u'see', u'written', u'somewhere', u'nothing', u'else'),
 (u'shall', u'see', u'written', u'somewhere', u'nothing', u'else', u'alice'),
 (u'see', u'written', u'somewhere', u'nothing', u'else', u'alice', u'soon'),
 (u'written', u'somewhere', u'nothing', u'else', u'alice', u'soon', u'began'),
 (u'somewhere', u'nothing', u'else', u'alice', u'soon', u'began', u'talking'),
 (u'nothing', u'else', u'alice', u'soon', u'began', u'talking', u'dinah'),
 (u'else', u'alice', u'soon', u'began', u'talking', u'dinah', u'll'),
 (u'alice', u'soon', u'began', u'talking', u'dinah', u'll', u'miss'),
 (u'soon', u'began', u'talking', u'dinah', u'll', u'miss', u'much'),
 (u'began', u'talking', u'dinah', u'll', u'miss', u'much', u'night'),
 (u'talking', u'dinah', u'll', u'miss', u'much', u'night', u'think'),
 (u'dinah', u'll', u'miss', u'much', u'night', u'think', u'dinah'),
 (u'll', u'miss', u'much', u'night', u'think', u'dinah', u'cat'),
 (u'miss', u'much', u'night', u'think', u'dinah', u'cat', u'hope'),
 (u'much', u'night', u'think', u'dinah', u'cat', u'hope', u'll'),
 (u'night', u'think', u'dinah', u'cat', u'hope', u'll', u'remember'),
 (u'think', u'dinah', u'cat', u'hope', u'll', u'remember', u'saucer'),
 (u'dinah', u'cat', u'hope', u'll', u'remember', u'saucer', u'milk'),
 (u'cat', u'hope', u'll', u'remember', u'saucer', u'milk', u'tea'),
 (u'hope', u'll', u'remember', u'saucer', u'milk', u'tea', u'time'),
 (u'll', u'remember', u'saucer', u'milk', u'tea', u'time', u'dinah'),
 (u'remember', u'saucer', u'milk', u'tea', u'time', u'dinah', u'dear'),
 (u'saucer', u'milk', u'tea', u'time', u'dinah', u'dear', u'wish'),
 (u'milk', u'tea', u'time', u'dinah', u'dear', u'wish', u'mice'),
 (u'tea', u'time', u'dinah', u'dear', u'wish', u'mice', u'air'),
 (u'time', u'dinah', u'dear', u'wish', u'mice', u'air', u'm'),
 (u'dinah', u'dear', u'wish', u'mice', u'air', u'm', u'afraid'),
 (u'dear', u'wish', u'mice', u'air', u'm', u'afraid', u'might'),
 (u'wish', u'mice', u'air', u'm', u'afraid', u'might', u'catch'),
 (u'mice', u'air', u'm', u'afraid', u'might', u'catch', u'bat'),
 (u'air', u'm', u'afraid', u'might', u'catch', u'bat', u'like'),
 (u'm', u'afraid', u'might', u'catch', u'bat', u'like', u'mouse'),
 (u'afraid', u'might', u'catch', u'bat', u'like', u'mouse', u'know'),
 (u'might', u'catch', u'bat', u'like', u'mouse', u'know', u'cats'),
 (u'catch', u'bat', u'like', u'mouse', u'know', u'cats', u'eat'),
 (u'bat', u'like', u'mouse', u'know', u'cats', u'eat', u'bats'),
 (u'like', u'mouse', u'know', u'cats', u'eat', u'bats', u'wonder'),
 (u'mouse', u'know', u'cats', u'eat', u'bats', u'wonder', u'alice'),
 (u'know', u'cats', u'eat', u'bats', u'wonder', u'alice', u'began'),
 (u'cats', u'eat', u'bats', u'wonder', u'alice', u'began', u'get'),
 (u'eat', u'bats', u'wonder', u'alice', u'began', u'get', u'rather'),
 (u'bats', u'wonder', u'alice', u'began', u'get', u'rather', u'sleepy'),
 (u'wonder', u'alice', u'began', u'get', u'rather', u'sleepy', u'went'),
 (u'alice', u'began', u'get', u'rather', u'sleepy', u'went', u'saying'),
 (u'began', u'get', u'rather', u'sleepy', u'went', u'saying', u'dreamy'),
 (u'get', u'rather', u'sleepy', u'went', u'saying', u'dreamy', u'sort'),
 (u'rather', u'sleepy', u'went', u'saying', u'dreamy', u'sort', u'way'),
 (u'sleepy', u'went', u'saying', u'dreamy', u'sort', u'way', u'cats'),
 (u'went', u'saying', u'dreamy', u'sort', u'way', u'cats', u'eat'),
 (u'saying', u'dreamy', u'sort', u'way', u'cats', u'eat', u'bats'),
 (u'dreamy', u'sort', u'way', u'cats', u'eat', u'bats', u'cats'),
 (u'sort', u'way', u'cats', u'eat', u'bats', u'cats', u'eat'),
 (u'way', u'cats', u'eat', u'bats', u'cats', u'eat', u'bats'),
 (u'cats', u'eat', u'bats', u'cats', u'eat', u'bats', u'sometimes'),
 (u'eat', u'bats', u'cats', u'eat', u'bats', u'sometimes', u'bats'),
 (u'bats', u'cats', u'eat', u'bats', u'sometimes', u'bats', u'eat'),
 (u'cats', u'eat', u'bats', u'sometimes', u'bats', u'eat', u'cats'),
 (u'eat', u'bats', u'sometimes', u'bats', u'eat', u'cats', u'see'),
 (u'bats', u'sometimes', u'bats', u'eat', u'cats', u'see', u'couldn'),
 (u'sometimes', u'bats', u'eat', u'cats', u'see', u'couldn', u'answer'),
 (u'bats', u'eat', u'cats', u'see', u'couldn', u'answer', u'either'),
 (u'eat', u'cats', u'see', u'couldn', u'answer', u'either', u'question'),
 (u'cats', u'see', u'couldn', u'answer', u'either', u'question', u'didn'),
 (u'see', u'couldn', u'answer', u'either', u'question', u'didn', u'much'),
 (u'couldn', u'answer', u'either', u'question', u'didn', u'much', u'matter'),
 (u'answer', u'either', u'question', u'didn', u'much', u'matter', u'way'),
 (u'either', u'question', u'didn', u'much', u'matter', u'way', u'put'),
 (u'question', u'didn', u'much', u'matter', u'way', u'put', u'felt'),
 (u'didn', u'much', u'matter', u'way', u'put', u'felt', u'dozing'),
 (u'much', u'matter', u'way', u'put', u'felt', u'dozing', u'begun'),
 (u'matter', u'way', u'put', u'felt', u'dozing', u'begun', u'dream'),
 (u'way', u'put', u'felt', u'dozing', u'begun', u'dream', u'walking'),
 (u'put', u'felt', u'dozing', u'begun', u'dream', u'walking', u'hand'),
 (u'felt', u'dozing', u'begun', u'dream', u'walking', u'hand', u'hand'),
 (u'dozing', u'begun', u'dream', u'walking', u'hand', u'hand', u'dinah'),
 (u'begun', u'dream', u'walking', u'hand', u'hand', u'dinah', u'saying'),
 (u'dream', u'walking', u'hand', u'hand', u'dinah', u'saying', u'earnestly'),
 (u'walking', u'hand', u'hand', u'dinah', u'saying', u'earnestly', u'dinah'),
 (u'hand', u'hand', u'dinah', u'saying', u'earnestly', u'dinah', u'tell'),
 (u'hand', u'dinah', u'saying', u'earnestly', u'dinah', u'tell', u'truth'),
 (u'dinah', u'saying', u'earnestly', u'dinah', u'tell', u'truth', u'ever'),
 (u'saying', u'earnestly', u'dinah', u'tell', u'truth', u'ever', u'eat'),
 (u'earnestly', u'dinah', u'tell', u'truth', u'ever', u'eat', u'bat'),
 (u'dinah', u'tell', u'truth', u'ever', u'eat', u'bat', u'suddenly'),
 (u'tell', u'truth', u'ever', u'eat', u'bat', u'suddenly', u'thump'),
 (u'truth', u'ever', u'eat', u'bat', u'suddenly', u'thump', u'thump'),
 (u'ever', u'eat', u'bat', u'suddenly', u'thump', u'thump', u'came'),
 (u'eat', u'bat', u'suddenly', u'thump', u'thump', u'came', u'upon'),
 (u'bat', u'suddenly', u'thump', u'thump', u'came', u'upon', u'heap'),
 (u'suddenly', u'thump', u'thump', u'came', u'upon', u'heap', u'sticks'),
 (u'thump', u'thump', u'came', u'upon', u'heap', u'sticks', u'dry'),
 (u'thump', u'came', u'upon', u'heap', u'sticks', u'dry', u'leaves'),
 (u'came', u'upon', u'heap', u'sticks', u'dry', u'leaves', u'fall'),
 (u'upon', u'heap', u'sticks', u'dry', u'leaves', u'fall', u'alice'),
 (u'heap', u'sticks', u'dry', u'leaves', u'fall', u'alice', u'bit'),
 (u'sticks', u'dry', u'leaves', u'fall', u'alice', u'bit', u'hurt'),
 (u'dry', u'leaves', u'fall', u'alice', u'bit', u'hurt', u'jumped'),
 (u'leaves', u'fall', u'alice', u'bit', u'hurt', u'jumped', u'feet'),
 (u'fall', u'alice', u'bit', u'hurt', u'jumped', u'feet', u'moment'),
 (u'alice', u'bit', u'hurt', u'jumped', u'feet', u'moment', u'looked'),
 (u'bit', u'hurt', u'jumped', u'feet', u'moment', u'looked', u'dark'),
 (u'hurt', u'jumped', u'feet', u'moment', u'looked', u'dark', u'overhead'),
 (u'jumped', u'feet', u'moment', u'looked', u'dark', u'overhead', u'another'),
 (u'feet', u'moment', u'looked', u'dark', u'overhead', u'another', u'long'),
 (u'moment', u'looked', u'dark', u'overhead', u'another', u'long', u'passage'),
 (u'looked', u'dark', u'overhead', u'another', u'long', u'passage', u'white'),
 (u'dark', u'overhead', u'another', u'long', u'passage', u'white', u'rabbit'),
 (u'overhead', u'another', u'long', u'passage', u'white', u'rabbit', u'still'),
 (u'another', u'long', u'passage', u'white', u'rabbit', u'still', u'sight'),
 (u'long', u'passage', u'white', u'rabbit', u'still', u'sight', u'hurrying'),
 (u'passage', u'white', u'rabbit', u'still', u'sight', u'hurrying', u'moment'),
 (u'white', u'rabbit', u'still', u'sight', u'hurrying', u'moment', u'lost'),
 (u'rabbit', u'still', u'sight', u'hurrying', u'moment', u'lost', u'away'),
 (u'still', u'sight', u'hurrying', u'moment', u'lost', u'away', u'went'),
 (u'sight', u'hurrying', u'moment', u'lost', u'away', u'went', u'alice'),
 (u'hurrying', u'moment', u'lost', u'away', u'went', u'alice', u'like'),
 (u'moment', u'lost', u'away', u'went', u'alice', u'like', u'wind'),
 (u'lost', u'away', u'went', u'alice', u'like', u'wind', u'time'),
 (u'away', u'went', u'alice', u'like', u'wind', u'time', u'hear'),
 (u'went', u'alice', u'like', u'wind', u'time', u'hear', u'say'),
 (u'alice', u'like', u'wind', u'time', u'hear', u'say', u'turned'),
 (u'like', u'wind', u'time', u'hear', u'say', u'turned', u'corner'),
 (u'wind', u'time', u'hear', u'say', u'turned', u'corner', u'oh'),
 (u'time', u'hear', u'say', u'turned', u'corner', u'oh', u'ears'),
 (u'hear', u'say', u'turned', u'corner', u'oh', u'ears', u'whiskers'),
 (u'say', u'turned', u'corner', u'oh', u'ears', u'whiskers', u'late'),
 (u'turned', u'corner', u'oh', u'ears', u'whiskers', u'late', u'getting'),
 (u'corner', u'oh', u'ears', u'whiskers', u'late', u'getting', u'close'),
 (u'oh', u'ears', u'whiskers', u'late', u'getting', u'close', u'behind'),
 (u'ears', u'whiskers', u'late', u'getting', u'close', u'behind', u'turned'),
 (u'whiskers', u'late', u'getting', u'close', u'behind', u'turned', u'corner'),
 (u'late', u'getting', u'close', u'behind', u'turned', u'corner', u'rabbit'),
 (u'getting', u'close', u'behind', u'turned', u'corner', u'rabbit', u'longer'),
 (u'close', u'behind', u'turned', u'corner', u'rabbit', u'longer', u'seen'),
 (u'behind', u'turned', u'corner', u'rabbit', u'longer', u'seen', u'found'),
 (u'turned', u'corner', u'rabbit', u'longer', u'seen', u'found', u'long'),
 (u'corner', u'rabbit', u'longer', u'seen', u'found', u'long', u'low'),
 (u'rabbit', u'longer', u'seen', u'found', u'long', u'low', u'hall'),
 (u'longer', u'seen', u'found', u'long', u'low', u'hall', u'lit'),
 (u'seen', u'found', u'long', u'low', u'hall', u'lit', u'row'),
 (u'found', u'long', u'low', u'hall', u'lit', u'row', u'lamps'),
 (u'long', u'low', u'hall', u'lit', u'row', u'lamps', u'hanging'),
 (u'low', u'hall', u'lit', u'row', u'lamps', u'hanging', u'roof'),
 (u'hall', u'lit', u'row', u'lamps', u'hanging', u'roof', u'doors'),
 (u'lit', u'row', u'lamps', u'hanging', u'roof', u'doors', u'round'),
 (u'row', u'lamps', u'hanging', u'roof', u'doors', u'round', u'hall'),
 (u'lamps', u'hanging', u'roof', u'doors', u'round', u'hall', u'locked'),
 (u'hanging', u'roof', u'doors', u'round', u'hall', u'locked', u'alice'),
 (u'roof', u'doors', u'round', u'hall', u'locked', u'alice', u'way'),
 (u'doors', u'round', u'hall', u'locked', u'alice', u'way', u'one'),
 (u'round', u'hall', u'locked', u'alice', u'way', u'one', u'side'),
 (u'hall', u'locked', u'alice', u'way', u'one', u'side', u'trying'),
 (u'locked', u'alice', u'way', u'one', u'side', u'trying', u'every'),
 (u'alice', u'way', u'one', u'side', u'trying', u'every', u'door'),
 (u'way', u'one', u'side', u'trying', u'every', u'door', u'walked'),
 (u'one', u'side', u'trying', u'every', u'door', u'walked', u'sadly'),
 (u'side', u'trying', u'every', u'door', u'walked', u'sadly', u'middle'),
 (u'trying', u'every', u'door', u'walked', u'sadly', u'middle', u'wondering'),
 (u'every', u'door', u'walked', u'sadly', u'middle', u'wondering', u'ever'),
 (u'door', u'walked', u'sadly', u'middle', u'wondering', u'ever', u'get'),
 (u'walked', u'sadly', u'middle', u'wondering', u'ever', u'get', u'suddenly'),
 (u'sadly', u'middle', u'wondering', u'ever', u'get', u'suddenly', u'came'),
 (u'middle', u'wondering', u'ever', u'get', u'suddenly', u'came', u'upon'),
 (u'wondering', u'ever', u'get', u'suddenly', u'came', u'upon', u'little'),
 (u'ever', u'get', u'suddenly', u'came', u'upon', u'little', u'three'),
 (u'get', u'suddenly', u'came', u'upon', u'little', u'three', u'legged'),
 (u'suddenly', u'came', u'upon', u'little', u'three', u'legged', u'table'),
 (u'came', u'upon', u'little', u'three', u'legged', u'table', u'made'),
 (u'upon', u'little', u'three', u'legged', u'table', u'made', u'solid'),
 (u'little', u'three', u'legged', u'table', u'made', u'solid', u'glass'),
 (u'three', u'legged', u'table', u'made', u'solid', u'glass', u'nothing'),
 (u'legged', u'table', u'made', u'solid', u'glass', u'nothing', u'except'),
 (u'table', u'made', u'solid', u'glass', u'nothing', u'except', u'tiny'),
 (u'made', u'solid', u'glass', u'nothing', u'except', u'tiny', u'golden'),
 (u'solid', u'glass', u'nothing', u'except', u'tiny', u'golden', u'key'),
 (u'glass', u'nothing', u'except', u'tiny', u'golden', u'key', u'alice'),
 (u'nothing', u'except', u'tiny', u'golden', u'key', u'alice', u'first'),
 (u'except', u'tiny', u'golden', u'key', u'alice', u'first', u'thought'),
 (u'tiny', u'golden', u'key', u'alice', u'first', u'thought', u'might'),
 (u'golden', u'key', u'alice', u'first', u'thought', u'might', u'belong'),
 (u'key', u'alice', u'first', u'thought', u'might', u'belong', u'one'),
 (u'alice', u'first', u'thought', u'might', u'belong', u'one', u'doors'),
 (u'first', u'thought', u'might', u'belong', u'one', u'doors', u'hall'),
 (u'thought', u'might', u'belong', u'one', u'doors', u'hall', u'alas'),
 (u'might', u'belong', u'one', u'doors', u'hall', u'alas', u'either'),
 (u'belong', u'one', u'doors', u'hall', u'alas', u'either', u'locks'),
 (u'one', u'doors', u'hall', u'alas', u'either', u'locks', u'large'),
 (u'doors', u'hall', u'alas', u'either', u'locks', u'large', u'key'),
 (u'hall', u'alas', u'either', u'locks', u'large', u'key', u'small'),
 (u'alas', u'either', u'locks', u'large', u'key', u'small', u'rate'),
 (u'either', u'locks', u'large', u'key', u'small', u'rate', u'would'),
 (u'locks', u'large', u'key', u'small', u'rate', u'would', u'open'),
 (u'large', u'key', u'small', u'rate', u'would', u'open', u'however'),
 (u'key', u'small', u'rate', u'would', u'open', u'however', u'second'),
 (u'small', u'rate', u'would', u'open', u'however', u'second', u'time'),
 (u'rate', u'would', u'open', u'however', u'second', u'time', u'round'),
 (u'would', u'open', u'however', u'second', u'time', u'round', u'came'),
 (u'open', u'however', u'second', u'time', u'round', u'came', u'upon'),
 (u'however', u'second', u'time', u'round', u'came', u'upon', u'low'),
 (u'second', u'time', u'round', u'came', u'upon', u'low', u'curtain'),
 (u'time', u'round', u'came', u'upon', u'low', u'curtain', u'noticed'),
 (u'round', u'came', u'upon', u'low', u'curtain', u'noticed', u'behind'),
 (u'came', u'upon', u'low', u'curtain', u'noticed', u'behind', u'little'),
 (u'upon', u'low', u'curtain', u'noticed', u'behind', u'little', u'door'),
 (u'low', u'curtain', u'noticed', u'behind', u'little', u'door', u'fifteen'),
 (u'curtain',
  u'noticed',
  u'behind',
  u'little',
  u'door',
  u'fifteen',
  u'inches'),
 (u'noticed', u'behind', u'little', u'door', u'fifteen', u'inches', u'high'),
 (u'behind', u'little', u'door', u'fifteen', u'inches', u'high', u'tried'),
 (u'little', u'door', u'fifteen', u'inches', u'high', u'tried', u'little'),
 (u'door', u'fifteen', u'inches', u'high', u'tried', u'little', u'golden'),
 (u'fifteen', u'inches', u'high', u'tried', u'little', u'golden', u'key'),
 (u'inches', u'high', u'tried', u'little', u'golden', u'key', u'lock'),
 (u'high', u'tried', u'little', u'golden', u'key', u'lock', u'great'),
 (u'tried', u'little', u'golden', u'key', u'lock', u'great', u'delight'),
 (u'little', u'golden', u'key', u'lock', u'great', u'delight', u'fitted'),
 (u'golden', u'key', u'lock', u'great', u'delight', u'fitted', u'alice'),
 (u'key', u'lock', u'great', u'delight', u'fitted', u'alice', u'opened'),
 (u'lock', u'great', u'delight', u'fitted', u'alice', u'opened', u'door'),
 (u'great', u'delight', u'fitted', u'alice', u'opened', u'door', u'found'),
 (u'delight', u'fitted', u'alice', u'opened', u'door', u'found', u'led'),
 (u'fitted', u'alice', u'opened', u'door', u'found', u'led', u'small'),
 (u'alice', u'opened', u'door', u'found', u'led', u'small', u'passage'),
 (u'opened', u'door', u'found', u'led', u'small', u'passage', u'much'),
 (u'door', u'found', u'led', u'small', u'passage', u'much', u'larger'),
 (u'found', u'led', u'small', u'passage', u'much', u'larger', u'rat'),
 (u'led', u'small', u'passage', u'much', u'larger', u'rat', u'hole'),
 (u'small', u'passage', u'much', u'larger', u'rat', u'hole', u'knelt'),
 (u'passage', u'much', u'larger', u'rat', u'hole', u'knelt', u'looked'),
 (u'much', u'larger', u'rat', u'hole', u'knelt', u'looked', u'along'),
 (u'larger', u'rat', u'hole', u'knelt', u'looked', u'along', u'passage'),
 (u'rat', u'hole', u'knelt', u'looked', u'along', u'passage', u'loveliest'),
 (u'hole', u'knelt', u'looked', u'along', u'passage', u'loveliest', u'garden'),
 (u'knelt', u'looked', u'along', u'passage', u'loveliest', u'garden', u'ever'),
 (u'looked', u'along', u'passage', u'loveliest', u'garden', u'ever', u'saw'),
 (u'along', u'passage', u'loveliest', u'garden', u'ever', u'saw', u'longed'),
 (u'passage', u'loveliest', u'garden', u'ever', u'saw', u'longed', u'get'),
 (u'loveliest', u'garden', u'ever', u'saw', u'longed', u'get', u'dark'),
 (u'garden', u'ever', u'saw', u'longed', u'get', u'dark', u'hall'),
 (u'ever', u'saw', u'longed', u'get', u'dark', u'hall', u'wander'),
 (u'saw', u'longed', u'get', u'dark', u'hall', u'wander', u'among'),
 (u'longed', u'get', u'dark', u'hall', u'wander', u'among', u'beds'),
 (u'get', u'dark', u'hall', u'wander', u'among', u'beds', u'bright'),
 (u'dark', u'hall', u'wander', u'among', u'beds', u'bright', u'flowers'),
 (u'hall', u'wander', u'among', u'beds', u'bright', u'flowers', u'cool'),
 (u'wander', u'among', u'beds', u'bright', u'flowers', u'cool', u'fountains'),
 (u'among', u'beds', u'bright', u'flowers', u'cool', u'fountains', u'could'),
 (u'beds', u'bright', u'flowers', u'cool', u'fountains', u'could', u'even'),
 (u'bright', u'flowers', u'cool', u'fountains', u'could', u'even', u'get'),
 (u'flowers', u'cool', u'fountains', u'could', u'even', u'get', u'head'),
 (u'cool', u'fountains', u'could', u'even', u'get', u'head', u'doorway'),
 (u'fountains', u'could', u'even', u'get', u'head', u'doorway', u'even'),
 (u'could', u'even', u'get', u'head', u'doorway', u'even', u'head'),
 (u'even', u'get', u'head', u'doorway', u'even', u'head', u'would'),
 (u'get', u'head', u'doorway', u'even', u'head', u'would', u'go'),
 (u'head', u'doorway', u'even', u'head', u'would', u'go', u'thought'),
 (u'doorway', u'even', u'head', u'would', u'go', u'thought', u'poor'),
 (u'even', u'head', u'would', u'go', u'thought', u'poor', u'alice'),
 (u'head', u'would', u'go', u'thought', u'poor', u'alice', u'would'),
 (u'would', u'go', u'thought', u'poor', u'alice', u'would', u'little'),
 (u'go', u'thought', u'poor', u'alice', u'would', u'little', u'use'),
 (u'thought', u'poor', u'alice', u'would', u'little', u'use', u'without'),
 (u'poor', u'alice', u'would', u'little', u'use', u'without', u'shoulders'),
 (u'alice', u'would', u'little', u'use', u'without', u'shoulders', u'oh'),
 (u'would', u'little', u'use', u'without', u'shoulders', u'oh', u'wish'),
 (u'little', u'use', u'without', u'shoulders', u'oh', u'wish', u'could'),
 (u'use', u'without', u'shoulders', u'oh', u'wish', u'could', u'shut'),
 (u'without', u'shoulders', u'oh', u'wish', u'could', u'shut', u'like'),
 (u'shoulders', u'oh', u'wish', u'could', u'shut', u'like', u'telescope'),
 (u'oh', u'wish', u'could', u'shut', u'like', u'telescope', u'think'),
 (u'wish', u'could', u'shut', u'like', u'telescope', u'think', u'could'),
 (u'could', u'shut', u'like', u'telescope', u'think', u'could', u'knew'),
 (u'shut', u'like', u'telescope', u'think', u'could', u'knew', u'begin'),
 (u'like', u'telescope', u'think', u'could', u'knew', u'begin', u'see'),
 (u'telescope', u'think', u'could', u'knew', u'begin', u'see', u'many'),
 (u'think', u'could', u'knew', u'begin', u'see', u'many', u'way'),
 (u'could', u'knew', u'begin', u'see', u'many', u'way', u'things'),
 (u'knew', u'begin', u'see', u'many', u'way', u'things', u'happened'),
 (u'begin', u'see', u'many', u'way', u'things', u'happened', u'lately'),
 (u'see', u'many', u'way', u'things', u'happened', u'lately', u'alice'),
 (u'many', u'way', u'things', u'happened', u'lately', u'alice', u'begun'),
 (u'way', u'things', u'happened', u'lately', u'alice', u'begun', u'think'),
 (u'things', u'happened', u'lately', u'alice', u'begun', u'think', u'things'),
 (u'happened', u'lately', u'alice', u'begun', u'think', u'things', u'indeed'),
 (u'lately', u'alice', u'begun', u'think', u'things', u'indeed', u'really'),
 (u'alice',
  u'begun',
  u'think',
  u'things',
  u'indeed',
  u'really',
  u'impossible'),
 (u'begun',
  u'think',
  u'things',
  u'indeed',
  u'really',
  u'impossible',
  u'seemed'),
 (u'think', u'things', u'indeed', u'really', u'impossible', u'seemed', u'use'),
 (u'things',
  u'indeed',
  u'really',
  u'impossible',
  u'seemed',
  u'use',
  u'waiting'),
 (u'indeed',
  u'really',
  u'impossible',
  u'seemed',
  u'use',
  u'waiting',
  u'little'),
 (u'really', u'impossible', u'seemed', u'use', u'waiting', u'little', u'door'),
 (u'impossible', u'seemed', u'use', u'waiting', u'little', u'door', u'went'),
 (u'seemed', u'use', u'waiting', u'little', u'door', u'went', u'back'),
 (u'use', u'waiting', u'little', u'door', u'went', u'back', u'table'),
 (u'waiting', u'little', u'door', u'went', u'back', u'table', u'half'),
 (u'little', u'door', u'went', u'back', u'table', u'half', u'hoping'),
 (u'door', u'went', u'back', u'table', u'half', u'hoping', u'might'),
 (u'went', u'back', u'table', u'half', u'hoping', u'might', u'find'),
 (u'back', u'table', u'half', u'hoping', u'might', u'find', u'another'),
 (u'table', u'half', u'hoping', u'might', u'find', u'another', u'key'),
 (u'half', u'hoping', u'might', u'find', u'another', u'key', u'rate'),
 (u'hoping', u'might', u'find', u'another', u'key', u'rate', u'book'),
 (u'might', u'find', u'another', u'key', u'rate', u'book', u'rules'),
 (u'find', u'another', u'key', u'rate', u'book', u'rules', u'shutting'),
 (u'another', u'key', u'rate', u'book', u'rules', u'shutting', u'people'),
 (u'key', u'rate', u'book', u'rules', u'shutting', u'people', u'like'),
 (u'rate', u'book', u'rules', u'shutting', u'people', u'like', u'telescopes'),
 (u'book', u'rules', u'shutting', u'people', u'like', u'telescopes', u'time'),
 (u'rules', u'shutting', u'people', u'like', u'telescopes', u'time', u'found'),
 (u'shutting',
  u'people',
  u'like',
  u'telescopes',
  u'time',
  u'found',
  u'little'),
 (u'people', u'like', u'telescopes', u'time', u'found', u'little', u'bottle'),
 (u'like',
  u'telescopes',
  u'time',
  u'found',
  u'little',
  u'bottle',
  u'certainly'),
 (u'telescopes',
  u'time',
  u'found',
  u'little',
  u'bottle',
  u'certainly',
  u'said'),
 (u'time', u'found', u'little', u'bottle', u'certainly', u'said', u'alice'),
 (u'found', u'little', u'bottle', u'certainly', u'said', u'alice', u'round'),
 (u'little', u'bottle', u'certainly', u'said', u'alice', u'round', u'neck'),
 (u'bottle', u'certainly', u'said', u'alice', u'round', u'neck', u'bottle'),
 (u'certainly', u'said', u'alice', u'round', u'neck', u'bottle', u'paper'),
 (u'said', u'alice', u'round', u'neck', u'bottle', u'paper', u'label'),
 (u'alice', u'round', u'neck', u'bottle', u'paper', u'label', u'words'),
 (u'round', u'neck', u'bottle', u'paper', u'label', u'words', u'drink'),
 (u'neck', u'bottle', u'paper', u'label', u'words', u'drink', u'beautifully'),
 (u'bottle',
  u'paper',
  u'label',
  u'words',
  u'drink',
  u'beautifully',
  u'printed'),
 (u'paper',
  u'label',
  u'words',
  u'drink',
  u'beautifully',
  u'printed',
  u'large'),
 (u'label',
  u'words',
  u'drink',
  u'beautifully',
  u'printed',
  u'large',
  u'letters'),
 (u'words',
  u'drink',
  u'beautifully',
  u'printed',
  u'large',
  u'letters',
  u'well'),
 (u'drink', u'beautifully', u'printed', u'large', u'letters', u'well', u'say'),
 (u'beautifully', u'printed', u'large', u'letters', u'well', u'say', u'drink'),
 (u'printed', u'large', u'letters', u'well', u'say', u'drink', u'wise'),
 (u'large', u'letters', u'well', u'say', u'drink', u'wise', u'little'),
 (u'letters', u'well', u'say', u'drink', u'wise', u'little', u'alice'),
 (u'well', u'say', u'drink', u'wise', u'little', u'alice', u'going'),
 (u'say', u'drink', u'wise', u'little', u'alice', u'going', u'hurry'),
 (u'drink', u'wise', u'little', u'alice', u'going', u'hurry', u'll'),
 (u'wise', u'little', u'alice', u'going', u'hurry', u'll', u'look'),
 (u'little', u'alice', u'going', u'hurry', u'll', u'look', u'first'),
 (u'alice', u'going', u'hurry', u'll', u'look', u'first', u'said'),
 (u'going', u'hurry', u'll', u'look', u'first', u'said', u'see'),
 (u'hurry', u'll', u'look', u'first', u'said', u'see', u'whether'),
 (u'll', u'look', u'first', u'said', u'see', u'whether', u'marked'),
 (u'look', u'first', u'said', u'see', u'whether', u'marked', u'poison'),
 (u'first', u'said', u'see', u'whether', u'marked', u'poison', u'read'),
 (u'said', u'see', u'whether', u'marked', u'poison', u'read', u'several'),
 (u'see', u'whether', u'marked', u'poison', u'read', u'several', u'nice'),
 (u'whether', u'marked', u'poison', u'read', u'several', u'nice', u'little'),
 (u'marked', u'poison', u'read', u'several', u'nice', u'little', u'histories'),
 (u'poison',
  u'read',
  u'several',
  u'nice',
  u'little',
  u'histories',
  u'children'),
 (u'read', u'several', u'nice', u'little', u'histories', u'children', u'got'),
 (u'several', u'nice', u'little', u'histories', u'children', u'got', u'burnt'),
 (u'nice', u'little', u'histories', u'children', u'got', u'burnt', u'eaten'),
 (u'little', u'histories', u'children', u'got', u'burnt', u'eaten', u'wild'),
 (u'histories', u'children', u'got', u'burnt', u'eaten', u'wild', u'beasts'),
 (u'children', u'got', u'burnt', u'eaten', u'wild', u'beasts', u'unpleasant'),
 (u'got', u'burnt', u'eaten', u'wild', u'beasts', u'unpleasant', u'things'),
 (u'burnt', u'eaten', u'wild', u'beasts', u'unpleasant', u'things', u'would'),
 (u'eaten',
  u'wild',
  u'beasts',
  u'unpleasant',
  u'things',
  u'would',
  u'remember'),
 (u'wild',
  u'beasts',
  u'unpleasant',
  u'things',
  u'would',
  u'remember',
  u'simple'),
 (u'beasts',
  u'unpleasant',
  u'things',
  u'would',
  u'remember',
  u'simple',
  u'rules'),
 (u'unpleasant',
  u'things',
  u'would',
  u'remember',
  u'simple',
  u'rules',
  u'friends'),
 (u'things',
  u'would',
  u'remember',
  u'simple',
  u'rules',
  u'friends',
  u'taught'),
 (u'would', u'remember', u'simple', u'rules', u'friends', u'taught', u'red'),
 (u'remember', u'simple', u'rules', u'friends', u'taught', u'red', u'hot'),
 (u'simple', u'rules', u'friends', u'taught', u'red', u'hot', u'poker'),
 (u'rules', u'friends', u'taught', u'red', u'hot', u'poker', u'burn'),
 (u'friends', u'taught', u'red', u'hot', u'poker', u'burn', u'hold'),
 (u'taught', u'red', u'hot', u'poker', u'burn', u'hold', u'long'),
 (u'red', u'hot', u'poker', u'burn', u'hold', u'long', u'cut'),
 (u'hot', u'poker', u'burn', u'hold', u'long', u'cut', u'finger'),
 (u'poker', u'burn', u'hold', u'long', u'cut', u'finger', u'deeply'),
 (u'burn', u'hold', u'long', u'cut', u'finger', u'deeply', u'knife'),
 (u'hold', u'long', u'cut', u'finger', u'deeply', u'knife', u'usually'),
 (u'long', u'cut', u'finger', u'deeply', u'knife', u'usually', u'bleeds'),
 (u'cut', u'finger', u'deeply', u'knife', u'usually', u'bleeds', u'never'),
 (u'finger',
  u'deeply',
  u'knife',
  u'usually',
  u'bleeds',
  u'never',
  u'forgotten'),
 (u'deeply',
  u'knife',
  u'usually',
  u'bleeds',
  u'never',
  u'forgotten',
  u'drink'),
 (u'knife', u'usually', u'bleeds', u'never', u'forgotten', u'drink', u'much'),
 (u'usually', u'bleeds', u'never', u'forgotten', u'drink', u'much', u'bottle'),
 (u'bleeds', u'never', u'forgotten', u'drink', u'much', u'bottle', u'marked'),
 (u'never', u'forgotten', u'drink', u'much', u'bottle', u'marked', u'poison'),
 (u'forgotten', u'drink', u'much', u'bottle', u'marked', u'poison', u'almost'),
 (u'drink', u'much', u'bottle', u'marked', u'poison', u'almost', u'certain'),
 (u'much',
  u'bottle',
  u'marked',
  u'poison',
  u'almost',
  u'certain',
  u'disagree'),
 (u'bottle',
  u'marked',
  u'poison',
  u'almost',
  u'certain',
  u'disagree',
  u'sooner'),
 (u'marked',
  u'poison',
  u'almost',
  u'certain',
  u'disagree',
  u'sooner',
  u'later'),
 (u'poison',
  u'almost',
  u'certain',
  u'disagree',
  u'sooner',
  u'later',
  u'however'),
 (u'almost',
  u'certain',
  u'disagree',
  u'sooner',
  u'later',
  u'however',
  u'bottle'),
 (u'certain',
  u'disagree',
  u'sooner',
  u'later',
  u'however',
  u'bottle',
  u'marked'),
 (u'disagree',
  u'sooner',
  u'later',
  u'however',
  u'bottle',
  u'marked',
  u'poison'),
 (u'sooner', u'later', u'however', u'bottle', u'marked', u'poison', u'alice'),
 (u'later',
  u'however',
  u'bottle',
  u'marked',
  u'poison',
  u'alice',
  u'ventured'),
 (u'however',
  u'bottle',
  u'marked',
  u'poison',
  u'alice',
  u'ventured',
  u'taste'),
 (u'bottle',
  u'marked',
  u'poison',
  u'alice',
  u'ventured',
  u'taste',
  u'finding'),
 (u'marked', u'poison', u'alice', u'ventured', u'taste', u'finding', u'nice'),
 (u'poison', u'alice', u'ventured', u'taste', u'finding', u'nice', u'fact'),
 (u'alice', u'ventured', u'taste', u'finding', u'nice', u'fact', u'sort'),
 (u'ventured', u'taste', u'finding', u'nice', u'fact', u'sort', u'mixed'),
 (u'taste', u'finding', u'nice', u'fact', u'sort', u'mixed', u'flavour'),
 (u'finding', u'nice', u'fact', u'sort', u'mixed', u'flavour', u'cherry'),
 (u'nice', u'fact', u'sort', u'mixed', u'flavour', u'cherry', u'tart'),
 (u'fact', u'sort', u'mixed', u'flavour', u'cherry', u'tart', u'custard'),
 (u'sort', u'mixed', u'flavour', u'cherry', u'tart', u'custard', u'pine'),
 (u'mixed', u'flavour', u'cherry', u'tart', u'custard', u'pine', u'apple'),
 (u'flavour', u'cherry', u'tart', u'custard', u'pine', u'apple', u'roast'),
 (u'cherry', u'tart', u'custard', u'pine', u'apple', u'roast', u'turkey'),
 (u'tart', u'custard', u'pine', u'apple', u'roast', u'turkey', u'toffee'),
 (u'custard', u'pine', u'apple', u'roast', u'turkey', u'toffee', u'hot'),
 (u'pine', u'apple', u'roast', u'turkey', u'toffee', u'hot', u'buttered'),
 (u'apple', u'roast', u'turkey', u'toffee', u'hot', u'buttered', u'toast'),
 (u'roast', u'turkey', u'toffee', u'hot', u'buttered', u'toast', u'soon'),
 (u'turkey', u'toffee', u'hot', u'buttered', u'toast', u'soon', u'finished'),
 (u'toffee', u'hot', u'buttered', u'toast', u'soon', u'finished', u'curious'),
 (u'hot', u'buttered', u'toast', u'soon', u'finished', u'curious', u'feeling'),
 (u'buttered',
  u'toast',
  u'soon',
  u'finished',
  u'curious',
  u'feeling',
  u'said'),
 (u'toast', u'soon', u'finished', u'curious', u'feeling', u'said', u'alice'),
 (u'soon', u'finished', u'curious', u'feeling', u'said', u'alice', u'must'),
 (u'finished',
  u'curious',
  u'feeling',
  u'said',
  u'alice',
  u'must',
  u'shutting'),
 (u'curious', u'feeling', u'said', u'alice', u'must', u'shutting', u'like'),
 (u'feeling', u'said', u'alice', u'must', u'shutting', u'like', u'telescope'),
 (u'said', u'alice', u'must', u'shutting', u'like', u'telescope', u'indeed'),
 (u'alice', u'must', u'shutting', u'like', u'telescope', u'indeed', u'ten'),
 (u'must', u'shutting', u'like', u'telescope', u'indeed', u'ten', u'inches'),
 (u'shutting', u'like', u'telescope', u'indeed', u'ten', u'inches', u'high'),
 (u'like', u'telescope', u'indeed', u'ten', u'inches', u'high', u'face'),
 (u'telescope', u'indeed', u'ten', u'inches', u'high', u'face', u'brightened'),
 (u'indeed', u'ten', u'inches', u'high', u'face', u'brightened', u'thought'),
 (u'ten', u'inches', u'high', u'face', u'brightened', u'thought', u'right'),
 (u'inches', u'high', u'face', u'brightened', u'thought', u'right', u'size'),
 (u'high', u'face', u'brightened', u'thought', u'right', u'size', u'going'),
 (u'face', u'brightened', u'thought', u'right', u'size', u'going', u'little'),
 (u'brightened', u'thought', u'right', u'size', u'going', u'little', u'door'),
 (u'thought', u'right', u'size', u'going', u'little', u'door', u'lovely'),
 (u'right', u'size', u'going', u'little', u'door', u'lovely', u'garden'),
 (u'size', u'going', u'little', u'door', u'lovely', u'garden', u'first'),
 (u'going', u'little', u'door', u'lovely', u'garden', u'first', u'however'),
 (u'little', u'door', u'lovely', u'garden', u'first', u'however', u'waited'),
 (u'door', u'lovely', u'garden', u'first', u'however', u'waited', u'minutes'),
 (u'lovely', u'garden', u'first', u'however', u'waited', u'minutes', u'see'),
 (u'garden', u'first', u'however', u'waited', u'minutes', u'see', u'going'),
 (u'first', u'however', u'waited', u'minutes', u'see', u'going', u'shrink'),
 (u'however', u'waited', u'minutes', u'see', u'going', u'shrink', u'felt'),
 (u'waited', u'minutes', u'see', u'going', u'shrink', u'felt', u'little'),
 (u'minutes', u'see', u'going', u'shrink', u'felt', u'little', u'nervous'),
 (u'see', u'going', u'shrink', u'felt', u'little', u'nervous', u'might'),
 (u'going', u'shrink', u'felt', u'little', u'nervous', u'might', u'end'),
 (u'shrink', u'felt', u'little', u'nervous', u'might', u'end', u'know'),
 (u'felt', u'little', u'nervous', u'might', u'end', u'know', u'said'),
 (u'little', u'nervous', u'might', u'end', u'know', u'said', u'alice'),
 (u'nervous', u'might', u'end', u'know', u'said', u'alice', u'going'),
 (u'might', u'end', u'know', u'said', u'alice', u'going', u'altogether'),
 (u'end', u'know', u'said', u'alice', u'going', u'altogether', u'like'),
 (u'know', u'said', u'alice', u'going', u'altogether', u'like', u'candle'),
 (u'said', u'alice', u'going', u'altogether', u'like', u'candle', u'wonder'),
 (u'alice', u'going', u'altogether', u'like', u'candle', u'wonder', u'like'),
 (u'going', u'altogether', u'like', u'candle', u'wonder', u'like', u'tried'),
 (u'altogether', u'like', u'candle', u'wonder', u'like', u'tried', u'fancy'),
 (u'like', u'candle', u'wonder', u'like', u'tried', u'fancy', u'flame'),
 (u'candle', u'wonder', u'like', u'tried', u'fancy', u'flame', u'candle'),
 (u'wonder', u'like', u'tried', u'fancy', u'flame', u'candle', u'like'),
 (u'like', u'tried', u'fancy', u'flame', u'candle', u'like', u'candle'),
 (u'tried', u'fancy', u'flame', u'candle', u'like', u'candle', u'blown'),
 (u'fancy', u'flame', u'candle', u'like', u'candle', u'blown', u'could'),
 (u'flame', u'candle', u'like', u'candle', u'blown', u'could', u'remember'),
 (u'candle', u'like', u'candle', u'blown', u'could', u'remember', u'ever'),
 (u'like', u'candle', u'blown', u'could', u'remember', u'ever', u'seen'),
 (u'candle', u'blown', u'could', u'remember', u'ever', u'seen', u'thing'),
 (u'blown', u'could', u'remember', u'ever', u'seen', u'thing', u'finding'),
 (u'could', u'remember', u'ever', u'seen', u'thing', u'finding', u'nothing'),
 (u'remember',
  u'ever',
  u'seen',
  u'thing',
  u'finding',
  u'nothing',
  u'happened'),
 (u'ever', u'seen', u'thing', u'finding', u'nothing', u'happened', u'decided'),
 (u'seen',
  u'thing',
  u'finding',
  u'nothing',
  u'happened',
  u'decided',
  u'going'),
 (u'thing',
  u'finding',
  u'nothing',
  u'happened',
  u'decided',
  u'going',
  u'garden'),
 (u'finding',
  u'nothing',
  u'happened',
  u'decided',
  u'going',
  u'garden',
  u'alas'),
 (u'nothing', u'happened', u'decided', u'going', u'garden', u'alas', u'poor'),
 (u'happened', u'decided', u'going', u'garden', u'alas', u'poor', u'alice'),
 (u'decided', u'going', u'garden', u'alas', u'poor', u'alice', u'got'),
 (u'going', u'garden', u'alas', u'poor', u'alice', u'got', u'door'),
 (u'garden', u'alas', u'poor', u'alice', u'got', u'door', u'found'),
 (u'alas', u'poor', u'alice', u'got', u'door', u'found', u'forgotten'),
 (u'poor', u'alice', u'got', u'door', u'found', u'forgotten', u'little'),
 (u'alice', u'got', u'door', u'found', u'forgotten', u'little', u'golden'),
 (u'got', u'door', u'found', u'forgotten', u'little', u'golden', u'key'),
 (u'door', u'found', u'forgotten', u'little', u'golden', u'key', u'went'),
 (u'found', u'forgotten', u'little', u'golden', u'key', u'went', u'back'),
 (u'forgotten', u'little', u'golden', u'key', u'went', u'back', u'table'),
 (u'little', u'golden', u'key', u'went', u'back', u'table', u'found'),
 (u'golden', u'key', u'went', u'back', u'table', u'found', u'could'),
 (u'key', u'went', u'back', u'table', u'found', u'could', u'possibly'),
 (u'went', u'back', u'table', u'found', u'could', u'possibly', u'reach'),
 (u'back', u'table', u'found', u'could', u'possibly', u'reach', u'could'),
 (u'table', u'found', u'could', u'possibly', u'reach', u'could', u'see'),
 (u'found', u'could', u'possibly', u'reach', u'could', u'see', u'quite'),
 (u'could', u'possibly', u'reach', u'could', u'see', u'quite', u'plainly'),
 (u'possibly', u'reach', u'could', u'see', u'quite', u'plainly', u'glass'),
 (u'reach', u'could', u'see', u'quite', u'plainly', u'glass', u'tried'),
 (u'could', u'see', u'quite', u'plainly', u'glass', u'tried', u'best'),
 (u'see', u'quite', u'plainly', u'glass', u'tried', u'best', u'climb'),
 (u'quite', u'plainly', u'glass', u'tried', u'best', u'climb', u'one'),
 (u'plainly', u'glass', u'tried', u'best', u'climb', u'one', u'legs'),
 (u'glass', u'tried', u'best', u'climb', u'one', u'legs', u'table'),
 (u'tried', u'best', u'climb', u'one', u'legs', u'table', u'slippery'),
 (u'best', u'climb', u'one', u'legs', u'table', u'slippery', u'tired'),
 (u'climb', u'one', u'legs', u'table', u'slippery', u'tired', u'trying'),
 (u'one', u'legs', u'table', u'slippery', u'tired', u'trying', u'poor'),
 (u'legs', u'table', u'slippery', u'tired', u'trying', u'poor', u'little'),
 (u'table', u'slippery', u'tired', u'trying', u'poor', u'little', u'thing'),
 (u'slippery', u'tired', u'trying', u'poor', u'little', u'thing', u'sat'),
 (u'tired', u'trying', u'poor', u'little', u'thing', u'sat', u'cried'),
 (u'trying', u'poor', u'little', u'thing', u'sat', u'cried', u'come'),
 (u'poor', u'little', u'thing', u'sat', u'cried', u'come', u'use'),
 (u'little', u'thing', u'sat', u'cried', u'come', u'use', u'crying'),
 (u'thing', u'sat', u'cried', u'come', u'use', u'crying', u'like'),
 (u'sat', u'cried', u'come', u'use', u'crying', u'like', u'said'),
 (u'cried', u'come', u'use', u'crying', u'like', u'said', u'alice'),
 (u'come', u'use', u'crying', u'like', u'said', u'alice', u'rather'),
 (u'use', u'crying', u'like', u'said', u'alice', u'rather', u'sharply'),
 (u'crying', u'like', u'said', u'alice', u'rather', u'sharply', u'advise'),
 (u'like', u'said', u'alice', u'rather', u'sharply', u'advise', u'leave'),
 (u'said', u'alice', u'rather', u'sharply', u'advise', u'leave', u'minute'),
 (u'alice',
  u'rather',
  u'sharply',
  u'advise',
  u'leave',
  u'minute',
  u'generally'),
 (u'rather',
  u'sharply',
  u'advise',
  u'leave',
  u'minute',
  u'generally',
  u'gave'),
 (u'sharply', u'advise', u'leave', u'minute', u'generally', u'gave', u'good'),
 (u'advise', u'leave', u'minute', u'generally', u'gave', u'good', u'advice'),
 (u'leave', u'minute', u'generally', u'gave', u'good', u'advice', u'though'),
 (u'minute', u'generally', u'gave', u'good', u'advice', u'though', u'seldom'),
 (u'generally',
  u'gave',
  u'good',
  u'advice',
  u'though',
  u'seldom',
  u'followed'),
 (u'gave',
  u'good',
  u'advice',
  u'though',
  u'seldom',
  u'followed',
  u'sometimes'),
 (u'good',
  u'advice',
  u'though',
  u'seldom',
  u'followed',
  u'sometimes',
  u'scolded'),
 (u'advice',
  u'though',
  u'seldom',
  u'followed',
  u'sometimes',
  u'scolded',
  u'severely'),
 (u'though',
  u'seldom',
  u'followed',
  u'sometimes',
  u'scolded',
  u'severely',
  u'bring'),
 (u'seldom',
  u'followed',
  u'sometimes',
  u'scolded',
  u'severely',
  u'bring',
  u'tears'),
 (u'followed',
  u'sometimes',
  u'scolded',
  u'severely',
  u'bring',
  u'tears',
  u'eyes'),
 (u'sometimes',
  u'scolded',
  u'severely',
  u'bring',
  u'tears',
  u'eyes',
  u'remembered'),
 (u'scolded',
  u'severely',
  u'bring',
  u'tears',
  u'eyes',
  u'remembered',
  u'trying'),
 (u'severely', u'bring', u'tears', u'eyes', u'remembered', u'trying', u'box'),
 (u'bring', u'tears', u'eyes', u'remembered', u'trying', u'box', u'ears'),
 (u'tears', u'eyes', u'remembered', u'trying', u'box', u'ears', u'cheated'),
 (u'eyes', u'remembered', u'trying', u'box', u'ears', u'cheated', u'game'),
 (u'remembered', u'trying', u'box', u'ears', u'cheated', u'game', u'croquet'),
 (u'trying', u'box', u'ears', u'cheated', u'game', u'croquet', u'playing'),
 (u'box', u'ears', u'cheated', u'game', u'croquet', u'playing', u'curious'),
 (u'ears', u'cheated', u'game', u'croquet', u'playing', u'curious', u'child'),
 (u'cheated', u'game', u'croquet', u'playing', u'curious', u'child', u'fond'),
 (u'game',
  u'croquet',
  u'playing',
  u'curious',
  u'child',
  u'fond',
  u'pretending'),
 (u'croquet',
  u'playing',
  u'curious',
  u'child',
  u'fond',
  u'pretending',
  u'two'),
 (u'playing', u'curious', u'child', u'fond', u'pretending', u'two', u'people'),
 (u'curious', u'child', u'fond', u'pretending', u'two', u'people', u'use'),
 (u'child', u'fond', u'pretending', u'two', u'people', u'use', u'thought'),
 (u'fond', u'pretending', u'two', u'people', u'use', u'thought', u'poor'),
 (u'pretending', u'two', u'people', u'use', u'thought', u'poor', u'alice'),
 (u'two', u'people', u'use', u'thought', u'poor', u'alice', u'pretend'),
 (u'people', u'use', u'thought', u'poor', u'alice', u'pretend', u'two'),
 (u'use', u'thought', u'poor', u'alice', u'pretend', u'two', u'people'),
 (u'thought', u'poor', u'alice', u'pretend', u'two', u'people', u'hardly'),
 (u'poor', u'alice', u'pretend', u'two', u'people', u'hardly', u'enough'),
 (u'alice', u'pretend', u'two', u'people', u'hardly', u'enough', u'left'),
 (u'pretend', u'two', u'people', u'hardly', u'enough', u'left', u'make'),
 (u'two', u'people', u'hardly', u'enough', u'left', u'make', u'one'),
 (u'people', u'hardly', u'enough', u'left', u'make', u'one', u'respectable'),
 (u'hardly', u'enough', u'left', u'make', u'one', u'respectable', u'person'),
 (u'enough', u'left', u'make', u'one', u'respectable', u'person', u'soon'),
 (u'left', u'make', u'one', u'respectable', u'person', u'soon', u'eye'),
 (u'make', u'one', u'respectable', u'person', u'soon', u'eye', u'fell'),
 (u'one', u'respectable', u'person', u'soon', u'eye', u'fell', u'little'),
 (u'respectable', u'person', u'soon', u'eye', u'fell', u'little', u'glass'),
 (u'person', u'soon', u'eye', u'fell', u'little', u'glass', u'box'),
 (u'soon', u'eye', u'fell', u'little', u'glass', u'box', u'lying'),
 (u'eye', u'fell', u'little', u'glass', u'box', u'lying', u'table'),
 (u'fell', u'little', u'glass', u'box', u'lying', u'table', u'opened'),
 (u'little', u'glass', u'box', u'lying', u'table', u'opened', u'found'),
 (u'glass', u'box', u'lying', u'table', u'opened', u'found', u'small'),
 (u'box', u'lying', u'table', u'opened', u'found', u'small', u'cake'),
 (u'lying', u'table', u'opened', u'found', u'small', u'cake', u'words'),
 (u'table', u'opened', u'found', u'small', u'cake', u'words', u'eat'),
 (u'opened', u'found', u'small', u'cake', u'words', u'eat', u'beautifully'),
 (u'found', u'small', u'cake', u'words', u'eat', u'beautifully', u'marked'),
 (u'small', u'cake', u'words', u'eat', u'beautifully', u'marked', u'currants'),
 (u'cake', u'words', u'eat', u'beautifully', u'marked', u'currants', u'well'),
 (u'words', u'eat', u'beautifully', u'marked', u'currants', u'well', u'll'),
 (u'eat', u'beautifully', u'marked', u'currants', u'well', u'll', u'eat'),
 (u'beautifully', u'marked', u'currants', u'well', u'll', u'eat', u'said'),
 (u'marked', u'currants', u'well', u'll', u'eat', u'said', u'alice'),
 (u'currants', u'well', u'll', u'eat', u'said', u'alice', u'makes'),
 (u'well', u'll', u'eat', u'said', u'alice', u'makes', u'grow'),
 (u'll', u'eat', u'said', u'alice', u'makes', u'grow', u'larger'),
 (u'eat', u'said', u'alice', u'makes', u'grow', u'larger', u'reach'),
 (u'said', u'alice', u'makes', u'grow', u'larger', u'reach', u'key'),
 (u'alice', u'makes', u'grow', u'larger', u'reach', u'key', u'makes'),
 (u'makes', u'grow', u'larger', u'reach', u'key', u'makes', u'grow'),
 (u'grow', u'larger', u'reach', u'key', u'makes', u'grow', u'smaller'),
 (u'larger', u'reach', u'key', u'makes', u'grow', u'smaller', u'creep'),
 (u'reach', u'key', u'makes', u'grow', u'smaller', u'creep', u'door'),
 (u'key', u'makes', u'grow', u'smaller', u'creep', u'door', u'either'),
 (u'makes', u'grow', u'smaller', u'creep', u'door', u'either', u'way'),
 (u'grow', u'smaller', u'creep', u'door', u'either', u'way', u'll'),
 (u'smaller', u'creep', u'door', u'either', u'way', u'll', u'get'),
 (u'creep', u'door', u'either', u'way', u'll', u'get', u'garden'),
 (u'door', u'either', u'way', u'll', u'get', u'garden', u'care'),
 (u'either', u'way', u'll', u'get', u'garden', u'care', u'happens'),
 (u'way', u'll', u'get', u'garden', u'care', u'happens', u'ate'),
 (u'll', u'get', u'garden', u'care', u'happens', u'ate', u'little'),
 (u'get', u'garden', u'care', u'happens', u'ate', u'little', u'bit'),
 (u'garden', u'care', u'happens', u'ate', u'little', u'bit', u'said'),
 (u'care', u'happens', u'ate', u'little', u'bit', u'said', u'anxiously'),
 (u'happens', u'ate', u'little', u'bit', u'said', u'anxiously', u'way'),
 (u'ate', u'little', u'bit', u'said', u'anxiously', u'way', u'way'),
 (u'little', u'bit', u'said', u'anxiously', u'way', u'way', u'holding'),
 (u'bit', u'said', u'anxiously', u'way', u'way', u'holding', u'hand'),
 (u'said', u'anxiously', u'way', u'way', u'holding', u'hand', u'top'),
 (u'anxiously', u'way', u'way', u'holding', u'hand', u'top', u'head'),
 (u'way', u'way', u'holding', u'hand', u'top', u'head', u'feel'),
 (u'way', u'holding', u'hand', u'top', u'head', u'feel', u'way'),
 (u'holding', u'hand', u'top', u'head', u'feel', u'way', u'growing'),
 (u'hand', u'top', u'head', u'feel', u'way', u'growing', u'quite'),
 (u'top', u'head', u'feel', u'way', u'growing', u'quite', u'surprised'),
 (u'head', u'feel', u'way', u'growing', u'quite', u'surprised', u'find'),
 (u'feel', u'way', u'growing', u'quite', u'surprised', u'find', u'remained'),
 (u'way', u'growing', u'quite', u'surprised', u'find', u'remained', u'size'),
 (u'growing', u'quite', u'surprised', u'find', u'remained', u'size', u'sure'),
 (u'quite',
  u'surprised',
  u'find',
  u'remained',
  u'size',
  u'sure',
  u'generally'),
 (u'surprised',
  u'find',
  u'remained',
  u'size',
  u'sure',
  u'generally',
  u'happens'),
 (u'find', u'remained', u'size', u'sure', u'generally', u'happens', u'one'),
 (u'remained', u'size', u'sure', u'generally', u'happens', u'one', u'eats'),
 (u'size', u'sure', u'generally', u'happens', u'one', u'eats', u'cake'),
 (u'sure', u'generally', u'happens', u'one', u'eats', u'cake', u'alice'),
 (u'generally', u'happens', u'one', u'eats', u'cake', u'alice', u'got'),
 (u'happens', u'one', u'eats', u'cake', u'alice', u'got', u'much'),
 (u'one', u'eats', u'cake', u'alice', u'got', u'much', u'way'),
 (u'eats', u'cake', u'alice', u'got', u'much', u'way', u'expecting'),
 (u'cake', u'alice', u'got', u'much', u'way', u'expecting', u'nothing'),
 (u'alice', u'got', u'much', u'way', u'expecting', u'nothing', u'way'),
 (u'got', u'much', u'way', u'expecting', u'nothing', u'way', u'things'),
 (u'much', u'way', u'expecting', u'nothing', u'way', u'things', u'happen'),
 (u'way', u'expecting', u'nothing', u'way', u'things', u'happen', u'seemed'),
 (u'expecting', u'nothing', u'way', u'things', u'happen', u'seemed', u'quite'),
 (u'nothing', u'way', u'things', u'happen', u'seemed', u'quite', u'dull'),
 (u'way', u'things', u'happen', u'seemed', u'quite', u'dull', u'stupid'),
 (u'things', u'happen', u'seemed', u'quite', u'dull', u'stupid', u'life'),
 (u'happen', u'seemed', u'quite', u'dull', u'stupid', u'life', u'go'),
 (u'seemed', u'quite', u'dull', u'stupid', u'life', u'go', u'common'),
 (u'quite', u'dull', u'stupid', u'life', u'go', u'common', u'way'),
 (u'dull', u'stupid', u'life', u'go', u'common', u'way', u'set'),
 (u'stupid', u'life', u'go', u'common', u'way', u'set', u'work'),
 (u'life', u'go', u'common', u'way', u'set', u'work', u'soon'),
 (u'go', u'common', u'way', u'set', u'work', u'soon', u'finished'),
 (u'common', u'way', u'set', u'work', u'soon', u'finished', u'cake'),
 (u'way', u'set', u'work', u'soon', u'finished', u'cake', u'chapter'),
 (u'set', u'work', u'soon', u'finished', u'cake', u'chapter', u'x'),
 (u'work', u'soon', u'finished', u'cake', u'chapter', u'x', u'lobster'),
 (u'soon', u'finished', u'cake', u'chapter', u'x', u'lobster', u'quadrille'),
 (u'finished', u'cake', u'chapter', u'x', u'lobster', u'quadrille', u'mock'),
 (u'cake', u'chapter', u'x', u'lobster', u'quadrille', u'mock', u'turtle'),
 (u'chapter', u'x', u'lobster', u'quadrille', u'mock', u'turtle', u'sighed'),
 (u'x', u'lobster', u'quadrille', u'mock', u'turtle', u'sighed', u'deeply'),
 (u'lobster', u'quadrille', u'mock', u'turtle', u'sighed', u'deeply', u'drew'),
 (u'quadrille', u'mock', u'turtle', u'sighed', u'deeply', u'drew', u'back'),
 (u'mock', u'turtle', u'sighed', u'deeply', u'drew', u'back', u'one'),
 (u'turtle', u'sighed', u'deeply', u'drew', u'back', u'one', u'flapper'),
 (u'sighed', u'deeply', u'drew', u'back', u'one', u'flapper', u'across'),
 (u'deeply', u'drew', u'back', u'one', u'flapper', u'across', u'eyes'),
 (u'drew', u'back', u'one', u'flapper', u'across', u'eyes', u'looked'),
 (u'back', u'one', u'flapper', u'across', u'eyes', u'looked', u'alice'),
 (u'one', u'flapper', u'across', u'eyes', u'looked', u'alice', u'tried'),
 (u'flapper', u'across', u'eyes', u'looked', u'alice', u'tried', u'speak'),
 ...]

In [323]:
nltk.pos_tag(corpus[0:1000])


Out[323]:
[(u'chapter', 'NN'),
 (u'rabbit', 'VBD'),
 (u'hole', 'NN'),
 (u'alice', 'NN'),
 (u'beginning', 'NN'),
 (u'get', 'NN'),
 (u'tired', 'VBD'),
 (u'sitting', 'VBG'),
 (u'sister', 'NN'),
 (u'bank', 'NN'),
 (u'nothing', 'NN'),
 (u'twice', 'NN'),
 (u'peeped', 'VBD'),
 (u'book', 'NN'),
 (u'sister', 'NN'),
 (u'reading', 'NN'),
 (u'pictures', 'NNS'),
 (u'conversations', 'NNS'),
 (u'use', 'VBP'),
 (u'book', 'NN'),
 (u'thought', 'NN'),
 (u'alice', 'NN'),
 (u'without', 'IN'),
 (u'pictures', 'NNS'),
 (u'conversations', 'NNS'),
 (u'considering', 'VBG'),
 (u'mind', 'NN'),
 (u'well', 'RB'),
 (u'could', 'MD'),
 (u'hot', 'VB'),
 (u'day', 'NN'),
 (u'made', 'VBN'),
 (u'feel', 'NN'),
 (u'sleepy', 'NN'),
 (u'stupid', 'VBD'),
 (u'whether', 'IN'),
 (u'pleasure', 'NN'),
 (u'making', 'VBG'),
 (u'daisy', 'NN'),
 (u'chain', 'NN'),
 (u'would', 'MD'),
 (u'worth', 'VB'),
 (u'trouble', 'NN'),
 (u'getting', 'VBG'),
 (u'picking', 'NN'),
 (u'daisies', 'NNS'),
 (u'suddenly', 'RB'),
 (u'white', 'JJ'),
 (u'rabbit', 'NN'),
 (u'pink', 'NN'),
 (u'eyes', 'NNS'),
 (u'ran', 'VBD'),
 (u'close', 'JJ'),
 (u'nothing', 'NN'),
 (u'remarkable', 'JJ'),
 (u'alice', 'NN'),
 (u'think', 'NN'),
 (u'much', 'RB'),
 (u'way', 'NN'),
 (u'hear', 'IN'),
 (u'rabbit', 'NN'),
 (u'say', 'VBP'),
 (u'oh', 'NN'),
 (u'dear', 'NN'),
 (u'oh', 'NN'),
 (u'dear', 'NN'),
 (u'shall', 'MD'),
 (u'late', 'VB'),
 (u'thought', 'NN'),
 (u'afterwards', 'NNS'),
 (u'occurred', 'VBD'),
 (u'ought', 'MD'),
 (u'wondered', 'VBN'),
 (u'time', 'NN'),
 (u'seemed', 'VBN'),
 (u'quite', 'RB'),
 (u'natural', 'JJ'),
 (u'rabbit', 'NN'),
 (u'actually', 'RB'),
 (u'took', 'VBD'),
 (u'watch', 'NN'),
 (u'waistcoat', 'NN'),
 (u'pocket', 'NN'),
 (u'looked', 'VBD'),
 (u'hurried', 'VBN'),
 (u'alice', 'NN'),
 (u'started', 'VBN'),
 (u'feet', 'NN'),
 (u'flashed', 'VBD'),
 (u'across', 'IN'),
 (u'mind', 'NN'),
 (u'never', 'RB'),
 (u'seen', 'VBN'),
 (u'rabbit', 'NN'),
 (u'either', 'RB'),
 (u'waistcoat', 'JJ'),
 (u'pocket', 'NN'),
 (u'watch', 'NN'),
 (u'take', 'VB'),
 (u'burning', 'NN'),
 (u'curiosity', 'NN'),
 (u'ran', 'VBD'),
 (u'across', 'IN'),
 (u'field', 'NN'),
 (u'fortunately', 'RB'),
 (u'time', 'NN'),
 (u'see', 'VB'),
 (u'pop', 'NN'),
 (u'large', 'JJ'),
 (u'rabbit', 'NN'),
 (u'hole', 'NN'),
 (u'hedge', 'NN'),
 (u'another', 'DT'),
 (u'moment', 'NN'),
 (u'went', 'VBD'),
 (u'alice', 'NN'),
 (u'never', 'RB'),
 (u'considering', 'VBG'),
 (u'world', 'NN'),
 (u'get', 'NN'),
 (u'rabbit', 'NN'),
 (u'hole', 'NN'),
 (u'went', 'VBD'),
 (u'straight', 'RB'),
 (u'like', 'IN'),
 (u'tunnel', 'NN'),
 (u'way', 'NN'),
 (u'dipped', 'VBD'),
 (u'suddenly', 'RB'),
 (u'suddenly', 'RB'),
 (u'alice', 'NN'),
 (u'moment', 'NN'),
 (u'think', 'NN'),
 (u'stopping', 'VBG'),
 (u'found', 'NN'),
 (u'falling', 'VBG'),
 (u'deep', 'NN'),
 (u'well', 'RB'),
 (u'either', 'DT'),
 (u'well', 'RB'),
 (u'deep', 'VB'),
 (u'fell', 'VBD'),
 (u'slowly', 'RB'),
 (u'plenty', 'NN'),
 (u'time', 'NN'),
 (u'went', 'VBD'),
 (u'look', 'NN'),
 (u'wonder', 'NN'),
 (u'going', 'VBG'),
 (u'happen', 'NN'),
 (u'next', 'IN'),
 (u'first', 'JJ'),
 (u'tried', 'JJ'),
 (u'look', 'NN'),
 (u'make', 'NN'),
 (u'coming', 'VBG'),
 (u'dark', 'NN'),
 (u'see', 'NN'),
 (u'anything', 'NN'),
 (u'looked', 'VBD'),
 (u'sides', 'NNS'),
 (u'well', 'RB'),
 (u'noticed', 'VBN'),
 (u'filled', 'VBN'),
 (u'cupboards', 'NNS'),
 (u'book', 'VBP'),
 (u'shelves', 'NNS'),
 (u'saw', 'VBD'),
 (u'maps', 'NNS'),
 (u'pictures', 'NNS'),
 (u'hung', 'VBP'),
 (u'upon', 'IN'),
 (u'pegs', 'NNS'),
 (u'took', 'VBD'),
 (u'jar', 'NN'),
 (u'one', 'CD'),
 (u'shelves', 'NNS'),
 (u'passed', 'VBD'),
 (u'labelled', 'VBN'),
 (u'orange', 'NN'),
 (u'marmalade', 'NN'),
 (u'great', 'NN'),
 (u'disappointment', 'NN'),
 (u'empty', 'NN'),
 (u'like', 'IN'),
 (u'drop', 'NN'),
 (u'jar', 'NN'),
 (u'fear', 'NN'),
 (u'killing', 'VBG'),
 (u'somebody', 'NN'),
 (u'managed', 'VBN'),
 (u'put', 'NN'),
 (u'one', 'CD'),
 (u'cupboards', 'NNS'),
 (u'fell', 'VBD'),
 (u'past', 'JJ'),
 (u'well', 'NN'),
 (u'thought', 'VBD'),
 (u'alice', 'NN'),
 (u'fall', 'NN'),
 (u'shall', 'MD'),
 (u'think', 'VB'),
 (u'nothing', 'NN'),
 (u'tumbling', 'VBG'),
 (u'stairs', 'NNS'),
 (u'brave', 'VBP'),
 (u'll', 'NN'),
 (u'think', 'NN'),
 (u'home', 'NN'),
 (u'wouldn', 'NN'),
 (u'say', 'VB'),
 (u'anything', 'NN'),
 (u'even', 'RB'),
 (u'fell', 'VBD'),
 (u'top', 'JJ'),
 (u'house', 'NN'),
 (u'likely', 'JJ'),
 (u'true', 'NN'),
 (u'would', 'MD'),
 (u'fall', 'VB'),
 (u'never', 'RB'),
 (u'come', 'VBN'),
 (u'end', 'NN'),
 (u'wonder', 'NN'),
 (u'many', 'JJ'),
 (u'miles', 'NNS'),
 (u've', 'VBP'),
 (u'fallen', 'VBN'),
 (u'time', 'NN'),
 (u'said', 'VBD'),
 (u'aloud', 'NN'),
 (u'must', 'MD'),
 (u'getting', 'VBG'),
 (u'somewhere', 'RB'),
 (u'near', 'IN'),
 (u'centre', 'NN'),
 (u'earth', 'NN'),
 (u'let', 'NN'),
 (u'see', 'NN'),
 (u'would', 'MD'),
 (u'four', 'VB'),
 (u'thousand', 'NN'),
 (u'miles', 'NNS'),
 (u'think', 'VBP'),
 (u'see', 'VB'),
 (u'alice', 'NN'),
 (u'learnt', 'NN'),
 (u'several', 'JJ'),
 (u'things', 'NNS'),
 (u'sort', 'NN'),
 (u'lessons', 'NNS'),
 (u'schoolroom', 'VBP'),
 (u'though', 'IN'),
 (u'good', 'JJ'),
 (u'opportunity', 'NN'),
 (u'showing', 'VBG'),
 (u'knowledge', 'NN'),
 (u'one', 'CD'),
 (u'listen', 'NN'),
 (u'still', 'RB'),
 (u'good', 'JJ'),
 (u'practice', 'NN'),
 (u'say', 'VBP'),
 (u'yes', 'NNS'),
 (u'right', 'RB'),
 (u'distance', 'NN'),
 (u'wonder', 'NN'),
 (u'latitude', 'NN'),
 (u'longitude', 'NN'),
 (u've', 'NN'),
 (u'got', 'VBD'),
 (u'alice', 'NN'),
 (u'idea', 'NN'),
 (u'latitude', 'NN'),
 (u'longitude', 'NN'),
 (u'either', 'DT'),
 (u'thought', 'NN'),
 (u'nice', 'NN'),
 (u'grand', 'NN'),
 (u'words', 'NNS'),
 (u'say', 'VBP'),
 (u'presently', 'RB'),
 (u'began', 'VBD'),
 (u'wonder', 'NN'),
 (u'shall', 'MD'),
 (u'fall', 'VB'),
 (u'right', 'RB'),
 (u'earth', 'JJ'),
 (u'funny', 'NN'),
 (u'll', 'NN'),
 (u'seem', 'VBP'),
 (u'come', 'VBN'),
 (u'among', 'IN'),
 (u'people', 'NNS'),
 (u'walk', 'VBP'),
 (u'heads', 'NNS'),
 (u'downward', 'RB'),
 (u'antipathies', 'VBZ'),
 (u'think', 'NN'),
 (u'rather', 'RB'),
 (u'glad', 'JJ'),
 (u'one', 'CD'),
 (u'listening', 'VBG'),
 (u'time', 'NN'),
 (u'didn', 'NN'),
 (u'sound', 'NN'),
 (u'right', 'RB'),
 (u'word', 'NN'),
 (u'shall', 'MD'),
 (u'ask', 'VB'),
 (u'name', 'NN'),
 (u'country', 'NN'),
 (u'know', 'VB'),
 (u'please', 'NN'),
 (u'ma', 'NN'),
 (u'new', 'JJ'),
 (u'zealand', 'NN'),
 (u'australia', 'NN'),
 (u'tried', 'VBD'),
 (u'curtsey', 'NN'),
 (u'spoke', 'NN'),
 (u'fancy', 'NN'),
 (u'curtseying', 'VBG'),
 (u're', 'NN'),
 (u'falling', 'VBG'),
 (u'air', 'NN'),
 (u'think', 'NN'),
 (u'could', 'MD'),
 (u'manage', 'VB'),
 (u'ignorant', 'JJ'),
 (u'little', 'JJ'),
 (u'girl', 'NN'),
 (u'll', 'NN'),
 (u'think', 'NN'),
 (u'asking', 'VBG'),
 (u'll', 'NN'),
 (u'never', 'RB'),
 (u'ask', 'VB'),
 (u'perhaps', 'RB'),
 (u'shall', 'MD'),
 (u'see', 'VB'),
 (u'written', 'VBN'),
 (u'somewhere', 'RB'),
 (u'nothing', 'NN'),
 (u'else', 'RB'),
 (u'alice', 'NN'),
 (u'soon', 'RB'),
 (u'began', 'VBD'),
 (u'talking', 'VBG'),
 (u'dinah', 'NN'),
 (u'll', 'NN'),
 (u'miss', 'NN'),
 (u'much', 'RB'),
 (u'night', 'NN'),
 (u'think', 'VBP'),
 (u'dinah', 'NN'),
 (u'cat', 'IN'),
 (u'hope', 'NN'),
 (u'll', 'NN'),
 (u'remember', 'NN'),
 (u'saucer', 'NN'),
 (u'milk', 'NN'),
 (u'tea', 'NN'),
 (u'time', 'NN'),
 (u'dinah', 'NN'),
 (u'dear', 'NN'),
 (u'wish', 'NN'),
 (u'mice', 'NN'),
 (u'air', 'NN'),
 (u'm', 'NN'),
 (u'afraid', 'VBD'),
 (u'might', 'MD'),
 (u'catch', 'VB'),
 (u'bat', 'JJ'),
 (u'like', 'IN'),
 (u'mouse', 'NN'),
 (u'know', 'VBP'),
 (u'cats', 'NNS'),
 (u'eat', 'IN'),
 (u'bats', 'NNS'),
 (u'wonder', 'NN'),
 (u'alice', 'NN'),
 (u'began', 'VBD'),
 (u'get', 'NN'),
 (u'rather', 'RB'),
 (u'sleepy', 'JJ'),
 (u'went', 'NN'),
 (u'saying', 'VBG'),
 (u'dreamy', 'NN'),
 (u'sort', 'NN'),
 (u'way', 'NN'),
 (u'cats', 'NNS'),
 (u'eat', 'VBP'),
 (u'bats', 'NNS'),
 (u'cats', 'NNS'),
 (u'eat', 'VBP'),
 (u'bats', 'NNS'),
 (u'sometimes', 'RB'),
 (u'bats', 'NNS'),
 (u'eat', 'IN'),
 (u'cats', 'NNS'),
 (u'see', 'VBP'),
 (u'couldn', 'JJ'),
 (u'answer', 'NN'),
 (u'either', 'DT'),
 (u'question', 'NN'),
 (u'didn', 'NN'),
 (u'much', 'RB'),
 (u'matter', 'JJR'),
 (u'way', 'NN'),
 (u'put', 'VBD'),
 (u'felt', 'VBN'),
 (u'dozing', 'NN'),
 (u'begun', 'NN'),
 (u'dream', 'NN'),
 (u'walking', 'VBG'),
 (u'hand', 'NN'),
 (u'hand', 'NN'),
 (u'dinah', 'NN'),
 (u'saying', 'VBG'),
 (u'earnestly', 'RB'),
 (u'dinah', 'JJ'),
 (u'tell', 'NN'),
 (u'truth', 'NN'),
 (u'ever', 'RB'),
 (u'eat', 'JJ'),
 (u'bat', 'NN'),
 (u'suddenly', 'RB'),
 (u'thump', 'VB'),
 (u'thump', 'NN'),
 (u'came', 'VBD'),
 (u'upon', 'IN'),
 (u'heap', 'NN'),
 (u'sticks', 'NNS'),
 (u'dry', 'JJ'),
 (u'leaves', 'NNS'),
 (u'fall', 'VBP'),
 (u'alice', 'NN'),
 (u'bit', 'NN'),
 (u'hurt', 'NN'),
 (u'jumped', 'VBD'),
 (u'feet', 'NNS'),
 (u'moment', 'NN'),
 (u'looked', 'VBD'),
 (u'dark', 'NN'),
 (u'overhead', 'NN'),
 (u'another', 'DT'),
 (u'long', 'JJ'),
 (u'passage', 'NN'),
 (u'white', 'NN'),
 (u'rabbit', 'NN'),
 (u'still', 'RB'),
 (u'sight', 'JJ'),
 (u'hurrying', 'NN'),
 (u'moment', 'NN'),
 (u'lost', 'VBD'),
 (u'away', 'RB'),
 (u'went', 'VBD'),
 (u'alice', 'NN'),
 (u'like', 'IN'),
 (u'wind', 'NN'),
 (u'time', 'NN'),
 (u'hear', 'NN'),
 (u'say', 'VB'),
 (u'turned', 'VBN'),
 (u'corner', 'NN'),
 (u'oh', 'NN'),
 (u'ears', 'NNS'),
 (u'whiskers', 'NNS'),
 (u'late', 'JJ'),
 (u'getting', 'VBG'),
 (u'close', 'NN'),
 (u'behind', 'IN'),
 (u'turned', 'VBN'),
 (u'corner', 'NN'),
 (u'rabbit', 'NN'),
 (u'longer', 'NN'),
 (u'seen', 'VBN'),
 (u'found', 'NN'),
 (u'long', 'RB'),
 (u'low', 'JJ'),
 (u'hall', 'NN'),
 (u'lit', 'NN'),
 (u'row', 'NN'),
 (u'lamps', 'NNS'),
 (u'hanging', 'VBG'),
 (u'roof', 'IN'),
 (u'doors', 'NNS'),
 (u'round', 'VBP'),
 (u'hall', 'JJ'),
 (u'locked', 'VBN'),
 (u'alice', 'NN'),
 (u'way', 'NN'),
 (u'one', 'CD'),
 (u'side', 'NN'),
 (u'trying', 'VBG'),
 (u'every', 'DT'),
 (u'door', 'NN'),
 (u'walked', 'VBD'),
 (u'sadly', 'RB'),
 (u'middle', 'JJ'),
 (u'wondering', 'NN'),
 (u'ever', 'RB'),
 (u'get', 'VB'),
 (u'suddenly', 'RB'),
 (u'came', 'VBD'),
 (u'upon', 'IN'),
 (u'little', 'JJ'),
 (u'three', 'CD'),
 (u'legged', 'JJ'),
 (u'table', 'JJ'),
 (u'made', 'NN'),
 (u'solid', 'JJ'),
 (u'glass', 'NN'),
 (u'nothing', 'NN'),
 (u'except', 'IN'),
 (u'tiny', 'JJ'),
 (u'golden', 'NN'),
 (u'key', 'NN'),
 (u'alice', 'NN'),
 (u'first', 'RB'),
 (u'thought', 'VBD'),
 (u'might', 'MD'),
 (u'belong', 'VB'),
 (u'one', 'CD'),
 (u'doors', 'NNS'),
 (u'hall', 'VBP'),
 (u'alas', 'NNS'),
 (u'either', 'CC'),
 (u'locks', 'NNS'),
 (u'large', 'JJ'),
 (u'key', 'JJ'),
 (u'small', 'JJ'),
 (u'rate', 'NN'),
 (u'would', 'MD'),
 (u'open', 'VB'),
 (u'however', 'RB'),
 (u'second', 'JJ'),
 (u'time', 'NN'),
 (u'round', 'NN'),
 (u'came', 'VBD'),
 (u'upon', 'IN'),
 (u'low', 'JJ'),
 (u'curtain', 'NN'),
 (u'noticed', 'VBD'),
 (u'behind', 'IN'),
 (u'little', 'JJ'),
 (u'door', 'NN'),
 (u'fifteen', 'IN'),
 (u'inches', 'NNS'),
 (u'high', 'JJ'),
 (u'tried', 'JJ'),
 (u'little', 'JJ'),
 (u'golden', 'NN'),
 (u'key', 'NN'),
 (u'lock', 'NN'),
 (u'great', 'NN'),
 (u'delight', 'NN'),
 (u'fitted', 'VBD'),
 (u'alice', 'NN'),
 (u'opened', 'VBN'),
 (u'door', 'NN'),
 (u'found', 'VBD'),
 (u'led', 'VBN'),
 (u'small', 'JJ'),
 (u'passage', 'NN'),
 (u'much', 'RB'),
 (u'larger', 'JJR'),
 (u'rat', 'NN'),
 (u'hole', 'NN'),
 (u'knelt', 'VBD'),
 (u'looked', 'VBN'),
 (u'along', 'IN'),
 (u'passage', 'NN'),
 (u'loveliest', 'NN'),
 (u'garden', 'NN'),
 (u'ever', 'RB'),
 (u'saw', 'VBD'),
 (u'longed', 'VBN'),
 (u'get', 'NN'),
 (u'dark', 'NN'),
 (u'hall', 'NN'),
 (u'wander', 'NN'),
 (u'among', 'IN'),
 (u'beds', 'NNS'),
 (u'bright', 'JJ'),
 (u'flowers', 'NNS'),
 (u'cool', 'NN'),
 (u'fountains', 'NNS'),
 (u'could', 'MD'),
 (u'even', 'RB'),
 (u'get', 'VB'),
 (u'head', 'NN'),
 (u'doorway', 'NN'),
 (u'even', 'RB'),
 (u'head', 'NN'),
 (u'would', 'MD'),
 (u'go', 'VB'),
 (u'thought', 'RB'),
 (u'poor', 'JJ'),
 (u'alice', 'NN'),
 (u'would', 'MD'),
 (u'little', 'VB'),
 (u'use', 'NN'),
 (u'without', 'IN'),
 (u'shoulders', 'NNS'),
 (u'oh', 'VBP'),
 (u'wish', 'JJ'),
 (u'could', 'MD'),
 (u'shut', 'VB'),
 (u'like', 'IN'),
 (u'telescope', 'NN'),
 (u'think', 'VBP'),
 (u'could', 'MD'),
 (u'knew', 'VB'),
 (u'begin', 'NN'),
 (u'see', 'VB'),
 (u'many', 'JJ'),
 (u'way', 'NN'),
 (u'things', 'NNS'),
 (u'happened', 'VBD'),
 (u'lately', 'RB'),
 (u'alice', 'NN'),
 (u'begun', 'NN'),
 (u'think', 'NN'),
 (u'things', 'NNS'),
 (u'indeed', 'RB'),
 (u'really', 'RB'),
 (u'impossible', 'JJ'),
 (u'seemed', 'VBN'),
 (u'use', 'NN'),
 (u'waiting', 'VBG'),
 (u'little', 'JJ'),
 (u'door', 'NN'),
 (u'went', 'NN'),
 (u'back', 'RB'),
 (u'table', 'JJ'),
 (u'half', 'NN'),
 (u'hoping', 'VBG'),
 (u'might', 'MD'),
 (u'find', 'VB'),
 (u'another', 'DT'),
 (u'key', 'NN'),
 (u'rate', 'NN'),
 (u'book', 'NN'),
 (u'rules', 'NNS'),
 (u'shutting', 'VBG'),
 (u'people', 'NNS'),
 (u'like', 'IN'),
 (u'telescopes', 'NNS'),
 (u'time', 'NN'),
 (u'found', 'VBN'),
 (u'little', 'JJ'),
 (u'bottle', 'NN'),
 (u'certainly', 'RB'),
 (u'said', 'VBD'),
 (u'alice', 'NN'),
 (u'round', 'NN'),
 (u'neck', 'NN'),
 (u'bottle', 'NN'),
 (u'paper', 'NN'),
 (u'label', 'NN'),
 (u'words', 'NNS'),
 (u'drink', 'VBP'),
 (u'beautifully', 'RB'),
 (u'printed', 'VBN'),
 (u'large', 'JJ'),
 (u'letters', 'NNS'),
 (u'well', 'RB'),
 (u'say', 'VBP'),
 (u'drink', 'NN'),
 (u'wise', 'NN'),
 (u'little', 'RB'),
 (u'alice', 'NN'),
 (u'going', 'VBG'),
 (u'hurry', 'NN'),
 (u'll', 'NN'),
 (u'look', 'NN'),
 (u'first', 'RB'),
 (u'said', 'VBD'),
 (u'see', 'VB'),
 (u'whether', 'IN'),
 (u'marked', 'VBN'),
 (u'poison', 'NN'),
 (u'read', 'NN'),
 (u'several', 'JJ'),
 (u'nice', 'NN'),
 (u'little', 'RB'),
 (u'histories', 'VBZ'),
 (u'children', 'NNS'),
 (u'got', 'VBD'),
 (u'burnt', 'NN'),
 (u'eaten', 'VBN'),
 (u'wild', 'NN'),
 (u'beasts', 'NNS'),
 (u'unpleasant', 'VBP'),
 (u'things', 'NNS'),
 (u'would', 'MD'),
 (u'remember', 'VB'),
 (u'simple', 'JJ'),
 (u'rules', 'NNS'),
 (u'friends', 'NNS'),
 (u'taught', 'VBD'),
 (u'red', 'VBN'),
 (u'hot', 'JJ'),
 (u'poker', 'NN'),
 (u'burn', 'NN'),
 (u'hold', 'NN'),
 (u'long', 'RB'),
 (u'cut', 'VBD'),
 (u'finger', 'JJR'),
 (u'deeply', 'RB'),
 (u'knife', 'NN'),
 (u'usually', 'RB'),
 (u'bleeds', 'VBZ'),
 (u'never', 'RB'),
 (u'forgotten', 'VBN'),
 (u'drink', 'NN'),
 (u'much', 'RB'),
 (u'bottle', 'RB'),
 (u'marked', 'VBN'),
 (u'poison', 'NN'),
 (u'almost', 'RB'),
 (u'certain', 'JJ'),
 (u'disagree', 'NN'),
 (u'sooner', 'NN'),
 (u'later', 'JJ'),
 (u'however', 'NN'),
 (u'bottle', 'NN'),
 (u'marked', 'VBD'),
 (u'poison', 'NN'),
 (u'alice', 'NN'),
 (u'ventured', 'VBD'),
 (u'taste', 'NN'),
 (u'finding', 'NN'),
 (u'nice', 'NN'),
 (u'fact', 'NN'),
 (u'sort', 'NN'),
 (u'mixed', 'VBD'),
 (u'flavour', 'PRP$'),
 (u'cherry', 'NN'),
 (u'tart', 'NN'),
 (u'custard', 'NN'),
 (u'pine', 'NN'),
 (u'apple', 'NN'),
 (u'roast', 'NN'),
 (u'turkey', 'NN'),
 (u'toffee', 'NN'),
 (u'hot', 'NN'),
 (u'buttered', 'VBD'),
 (u'toast', 'NN'),
 (u'soon', 'RB'),
 (u'finished', 'VBN'),
 (u'curious', 'JJ'),
 (u'feeling', 'NN'),
 (u'said', 'VBD'),
 (u'alice', 'NN'),
 (u'must', 'MD'),
 (u'shutting', 'VBG'),
 (u'like', 'IN'),
 (u'telescope', 'NN'),
 (u'indeed', 'RB'),
 (u'ten', 'VBN'),
 (u'inches', 'NNS'),
 (u'high', 'JJ'),
 (u'face', 'NN'),
 (u'brightened', 'VBD'),
 (u'thought', 'VBN'),
 (u'right', 'RB'),
 (u'size', 'VBP'),
 (u'going', 'VBG'),
 (u'little', 'RB'),
 (u'door', 'NN'),
 (u'lovely', 'RB'),
 (u'garden', 'VBN'),
 (u'first', 'JJ'),
 (u'however', 'RB'),
 (u'waited', 'VBN'),
 (u'minutes', 'NNS'),
 (u'see', 'VBP'),
 (u'going', 'VBG'),
 (u'shrink', 'NN'),
 (u'felt', 'VBD'),
 (u'little', 'JJ'),
 (u'nervous', 'JJ'),
 (u'might', 'NN'),
 (u'end', 'NN'),
 (u'know', 'VB'),
 (u'said', 'VBD'),
 (u'alice', 'NN'),
 (u'going', 'VBG'),
 (u'altogether', 'RB'),
 (u'like', 'IN'),
 (u'candle', 'NN'),
 (u'wonder', 'NN'),
 (u'like', 'IN'),
 (u'tried', 'JJ'),
 (u'fancy', 'NN'),
 (u'flame', 'NN'),
 (u'candle', 'NN'),
 (u'like', 'IN'),
 (u'candle', 'NN'),
 (u'blown', 'NN'),
 (u'could', 'MD'),
 (u'remember', 'VB'),
 (u'ever', 'RB'),
 (u'seen', 'VBN'),
 (u'thing', 'NN'),
 (u'finding', 'NN'),
 (u'nothing', 'NN'),
 (u'happened', 'VBD'),
 (u'decided', 'VBN'),
 (u'going', 'VBG'),
 (u'garden', 'RB'),
 (u'alas', 'RB'),
 (u'poor', 'JJ'),
 (u'alice', 'NN'),
 (u'got', 'VBD'),
 (u'door', 'NN'),
 (u'found', 'VBN'),
 (u'forgotten', 'NN'),
 (u'little', 'RB'),
 (u'golden', 'VBN'),
 (u'key', 'JJ'),
 (u'went', 'NN'),
 (u'back', 'RB'),
 (u'table', 'JJ'),
 (u'found', 'NN'),
 (u'could', 'MD'),
 (u'possibly', 'RB'),
 (u'reach', 'VB'),
 (u'could', 'MD'),
 (u'see', 'VB'),
 (u'quite', 'RB'),
 (u'plainly', 'RB'),
 (u'glass', 'NN'),
 (u'tried', 'VBD'),
 (u'best', 'JJS'),
 (u'climb', 'NN'),
 (u'one', 'CD'),
 (u'legs', 'NNS'),
 (u'table', 'JJ'),
 (u'slippery', 'NN'),
 (u'tired', 'VBD'),
 (u'trying', 'VBG'),
 (u'poor', 'NN'),
 (u'little', 'RB'),
 (u'thing', 'VBG'),
 (u'sat', 'RB'),
 (u'cried', 'VBN'),
 (u'come', 'NN'),
 (u'use', 'NN'),
 (u'crying', 'VBG'),
 (u'like', 'IN'),
 (u'said', 'VBD'),
 (u'alice', 'NN'),
 (u'rather', 'RB'),
 (u'sharply', 'RB'),
 (u'advise', 'VB'),
 (u'leave', 'JJ'),
 (u'minute', 'NN'),
 (u'generally', 'RB'),
 (u'gave', 'VBD'),
 (u'good', 'JJ'),
 (u'advice', 'NN'),
 (u'though', 'IN'),
 (u'seldom', 'NN'),
 (u'followed', 'VBN'),
 (u'sometimes', 'RB'),
 (u'scolded', 'VBN'),
 (u'severely', 'RB'),
 (u'bring', 'VBG'),
 (u'tears', 'NNS'),
 (u'eyes', 'NNS'),
 (u'remembered', 'VBD'),
 (u'trying', 'VBG'),
 (u'box', 'NN'),
 (u'ears', 'NNS'),
 (u'cheated', 'VBD'),
 (u'game', 'NN'),
 (u'croquet', 'NN'),
 (u'playing', 'NN'),
 (u'curious', 'JJ'),
 (u'child', 'NN'),
 (u'fond', 'NN'),
 (u'pretending', 'VBG'),
 (u'two', 'CD'),
 (u'people', 'NNS'),
 (u'use', 'VBP'),
 (u'thought', 'NN'),
 (u'poor', 'NN'),
 (u'alice', 'NN'),
 (u'pretend', 'NN'),
 (u'two', 'CD'),
 (u'people', 'NNS'),
 (u'hardly', 'RB'),
 (u'enough', 'RB'),
 (u'left', 'VBN'),
 (u'make', 'VB'),
 (u'one', 'CD'),
 (u'respectable', 'JJ'),
 (u'person', 'NN'),
 (u'soon', 'RB'),
 (u'eye', 'NN'),
 (u'fell', 'VBD'),
 (u'little', 'JJ'),
 (u'glass', 'NN'),
 (u'box', 'NN'),
 (u'lying', 'VBG'),
 (u'table', 'JJ'),
 (u'opened', 'JJ'),
 (u'found', 'NN'),
 (u'small', 'JJ'),
 (u'cake', 'NN'),
 (u'words', 'NNS'),
 (u'eat', 'VBP'),
 (u'beautifully', 'RB'),
 (u'marked', 'VBN'),
 (u'currants', 'NNS'),
 (u'well', 'RB'),
 (u'll', 'VBP'),
 (u'eat', 'JJ'),
 (u'said', 'VBD'),
 (u'alice', 'NN'),
 (u'makes', 'VBZ'),
 (u'grow', 'NN'),
 (u'larger', 'JJR'),
 (u'reach', 'NN'),
 (u'key', 'JJ'),
 (u'makes', 'NNS'),
 (u'grow', 'NN'),
 (u'smaller', 'JJR'),
 (u'creep', 'NN'),
 (u'door', 'NN'),
 (u'either', 'DT'),
 (u'way', 'NN'),
 (u'll', 'NN'),
 (u'get', 'NN'),
 (u'garden', 'VBN'),
 (u'care', 'NN'),
 (u'happens', 'NNS'),
 (u'ate', 'VBP'),
 (u'little', 'JJ'),
 (u'bit', 'NN'),
 (u'said', 'VBD'),
 (u'anxiously', 'RB'),
 (u'way', 'NN'),
 (u'way', 'NN'),
 (u'holding', 'VBG'),
 (u'hand', 'NN'),
 (u'top', 'JJ'),
 (u'head', 'NN'),
 (u'feel', 'NN'),
 (u'way', 'NN'),
 (u'growing', 'VBG'),
 (u'quite', 'RB'),
 (u'surprised', 'VBN'),
 (u'find', 'NN'),
 (u'remained', 'VBD'),
 (u'size', 'NN'),
 (u'sure', 'NN'),
 (u'generally', 'RB'),
 (u'happens', 'VBZ'),
 (u'one', 'CD'),
 (u'eats', 'NNS'),
 (u'cake', 'VBP'),
 (u'alice', 'NN'),
 (u'got', 'VBD'),
 (u'much', 'RB'),
 (u'way', 'NN'),
 (u'expecting', 'VBG'),
 (u'nothing', 'NN'),
 (u'way', 'NN'),
 (u'things', 'NNS'),
 (u'happen', 'VBP'),
 (u'seemed', 'VBN'),
 (u'quite', 'RB'),
 (u'dull', 'JJ'),
 (u'stupid', 'JJ'),
 (u'life', 'NN'),
 (u'go', 'NN'),
 (u'common', 'JJ'),
 (u'way', 'NN'),
 (u'set', 'NN'),
 (u'work', 'NN'),
 (u'soon', 'RB'),
 (u'finished', 'VBN'),
 (u'cake', 'NN'),
 (u'chapter', 'NN'),
 (u'x', 'NN'),
 (u'lobster', 'NN'),
 (u'quadrille', 'NN'),
 (u'mock', 'NN'),
 (u'turtle', 'NN'),
 (u'sighed', 'VBD'),
 (u'deeply', 'RB'),
 (u'drew', 'JJ'),
 (u'back', 'NN'),
 (u'one', 'CD'),
 (u'flapper', 'NN')]

The End!


In [ ]: