Skip to content

Instantly share code, notes, and snippets.

@postylem
Last active May 18, 2022 01:44
Show Gist options
  • Save postylem/8f5e4821e8578a33be6b932e43d66b4b to your computer and use it in GitHub Desktop.
Save postylem/8f5e4821e8578a33be6b932e43d66b4b to your computer and use it in GitHub Desktop.
getting a list of pairs of common and uncommon words which are similar to each other
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 36,
"id": "3d21b9ae",
"metadata": {},
"outputs": [],
"source": [
"from nltk.corpus import webtext\n",
"from nltk.probability import FreqDist\n",
"from nltk.metrics.distance import edit_distance\n",
"from nltk.corpus import words\n",
"from nltk import FreqDist\n",
"\n",
"english_dictionary = dict.fromkeys(words.words(), None) \n",
"def is_english_word(word):\n",
" try: \n",
" x = english_dictionary[word] \n",
" return True \n",
" except KeyError: \n",
" return False \n",
"\n",
"from itertools import product\n",
"\n",
"max_edit_dist = 2\n",
"def pair_of_words_are_similar(p):\n",
" return edit_distance(*p) <= max_edit_dist\n",
"\n",
"def get_common_uncommon_pairs(common, uncommon, criterion = pair_of_words_are_similar):\n",
" # makes a list of pairs of words, where \n",
" # the first is from the common list, second is from the uncommon list, \n",
" # and they are related by criterion (default, edit_distance 2 or less)\n",
" return [(c,u) for (c,u) in product(common,uncommon) if criterion((c,u))]"
]
},
{
"cell_type": "code",
"execution_count": 37,
"id": "06637ca2",
"metadata": {},
"outputs": [],
"source": [
"all_words = gutenberg.words() # use project gutenberg selection for text\n",
"freq_dist = FreqDist(all_words)"
]
},
{
"cell_type": "code",
"execution_count": 45,
"id": "0e582c1b",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Found 286 commmon words such as ['Emma', 'with', 'home', 'happy', 'some']\n",
"Found 5138 uncommmon words such as ['drizzle', 'Mitchell', 'portionless', 'dissentient', 'quadrille']\n"
]
}
],
"source": [
"common_threshold = 500\n",
"uncommon_threshold = 2\n",
"min_length = 3\n",
"\n",
"# get common words: longer than min_length, and occur more than common_threshold times in the corpus\n",
"common_words = [\n",
" w for w, n in freq_dist.items() if \n",
" is_english_word(w) and n>common_threshold and len(w) > min_length]\n",
"# get uncommon words: longer than min_length, and occur less than uncommon_threshold times in the corpus\n",
"uncommon_words = [\n",
" w for w, n in freq_dist.items() if \n",
" is_english_word(w) and n<uncommon_threshold and len(w) > min_length and len(w) <= max(map(len,common_words))+max_edit_dist]\n",
"print(f\"Found {len(common_words)} commmon words such as {common_words[:5]}\")\n",
"print(f\"Found {len(uncommon_words)} uncommmon words such as {uncommon_words[:5]}\")"
]
},
{
"cell_type": "code",
"execution_count": 47,
"id": "2bfeb429",
"metadata": {},
"outputs": [],
"source": [
"pairs = get_common_uncommon_pairs(common_words, uncommon_words)"
]
},
{
"cell_type": "code",
"execution_count": 48,
"id": "94635d65",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"('Emma', 'Ammi'); ('Emma', 'Rama'); ('with', 'switch'); ('with', 'bitch'); ('with', 'sith'); ('with', 'hitch'); ('with', 'vita'); ('with', 'cite'); ('with', 'wick'); ('with', 'hish'); ('with', 'frith'); ('with', 'sithe'); ('with', 'wisht'); ('with', 'winch'); ('with', 'rite'); ('with', 'byth'); ('with', 'lite'); ('with', 'firth'); ('with', 'titi'); ('home', 'cote'); ('home', 'Jose'); ('home', 'pope'); ('home', 'cove'); ('home', 'thole'); ('home', 'hone'); ('home', 'rhomb'); ('home', 'rove'); ('home', 'chime'); ('home', 'rime'); ('home', 'mone'); ('home', 'honk'); ('home', 'acme'); ('home', 'dime'); ('home', 'hymen'); ('home', 'rote'); ('home', 'doge'); ('home', 'horde'); ('happy', 'Lapp'); ('some', 'cote'); ('some', 'Jose'); ('some', 'pope'); ('some', 'sare'); ('some', 'sola'); ('some', 'solo'); ('some', 'snore'); ('some', 'cove'); ('some', 'hone'); ('some', 'spume'); ('some', 'rove'); ('some', 'rime'); ('some', 'mone'); ('some', 'acme'); ('some', 'dime'); ('some', 'slue'); ('some', 'rote'); ('some', 'semen'); ('some', 'doge'); ('best', 'vext'); ('best', 'ablest'); ('best', 'bely'); ('best', 'besom'); ('best', 'sept'); ('best', 'baste'); ('best', 'testy'); ('best', 'bleat'); ('best', 'Bess'); ('best', 'Jesu'); ('best', 'bass'); ('best', 'pest'); ('best', 'hent'); ('best', 'kist'); ('best', 'gist'); ('best', 'heft'); ('world', 'worded'); ('world', 'pored'); ('world', 'wold'); ('very', 'vext'); ('very', 'bely'); ('very', 'vestry'); ('very', 'Beri'); ('very', 'Neri'); ('very', 'fern'); ('very', 'Arry'); ('very', 'Derby'); ('very', 'gory'); ('very', 'serf'); ('very', 'aver'); ('very', 'sera'); ('very', 'eely'); ('very', 'revery'); ('very', 'veer'); ('very', 'faery'); ('very', 'oary'); ('very', 'demy'); ('very', 'germ'); ('very', 'vari'); ('very', 'herby'); ('little', 'tattle'); ('little', 'lite'); ('most', 'Jose'); ('most', 'tort'); ('most', 'tout'); ('most', 'joist'); ('most', 'pest'); ('most', 'joust'); ('most', 'mone'); ('most', 'kist'); ('most', 'roost'); ('most', 'Mont'); ('most', 'gist'); ('most', 'posh'); ('father', 'hater'); ('father', 'catcher'); ('father', 'tether'); ('father', 'tother'); ('father', 'bather'); ('father', 'patter'); ('father', 'patcher'); ('father', 'Luther'); ('sister', 'lifter'); ('sister', 'sifted'); ('sister', 'setter'); ('sister', 'sitter'); ('sister', 'wester'); ('sister', 'sorter'); ('sister', 'sinker'); ('sister', 'foster'); ('sister', 'muster'); ('sister', 'riser'); ('sister', 'buster'); ('been', 'bely'); ('been', 'Shen'); ('been', 'fern'); ('been', 'peel'); ('been', 'mien'); ('been', 'Glen'); ('been', 'veer'); ('been', 'rein'); ('been', 'semen'); ('house', 'Louise'); ('house', 'hough'); ('house', 'Jose'); ('house', 'mouser'); ('house', 'copse'); ('house', 'tousle'); ('house', 'Norse'); ('house', 'douse'); ('house', 'hone'); ('house', 'joust'); ('house', 'bouge'); ('house', 'boule'); ('house', 'hound'); ('house', 'noose'); ('house', 'louse'); ('house', 'horde'); ('from', 'trow'); ('from', 'forum'); ('from', 'tram'); ('from', 'dram'); ('from', 'furor'); ('from', 'frore'); ('from', 'proem'); ('from', 'froth'); ('mother', 'gopher'); ('mother', 'mocker'); ('mother', 'mover'); ('mother', 'mouser'); ('mother', 'monger'); ('mother', 'mothered'); ('mother', 'tether'); ('mother', 'tother'); ('mother', 'bather'); ('mother', 'otter'); ('mother', 'mothy'); ('mother', 'Luther'); ('long', 'loam'); ('long', 'bung'); ('long', 'hone'); ('long', 'loon'); ('long', 'dang'); ('long', 'tong'); ('long', 'mone'); ('long', 'flong'); ('long', 'conn'); ('long', 'honk'); ('long', 'Mont'); ('long', 'loup'); ('long', 'prong'); ('long', 'clog'); ('long', 'lorn'); ('have', 'rave'); ('have', 'halves'); ('have', 'pare'); ('have', 'Page'); ('have', 'hack'); ('have', 'fake'); ('have', 'halve'); ('have', 'sare'); ('have', 'daze'); ('have', 'aver'); ('have', 'hain'); ('have', 'wavy'); ('have', 'hater'); ('have', 'cove'); ('have', 'eaves'); ('have', 'Bare'); ('have', 'nape'); ('have', 'waive'); ('have', 'hone'); ('have', 'tape'); ('have', 'eave'); ('have', 'wage'); ('have', 'rove'); ('have', 'hives'); ('more', 'cote'); ('more', 'pare'); ('more', 'Jose'); ('more', 'mover'); ('more', 'marm'); ('more', 'pope'); ('more', 'gory'); ('more', 'sare'); ('more', 'tort'); ('more', 'pored'); ('more', 'snore'); ('more', 'Norse'); ('more', 'jure'); ('more', 'cove'); ('more', 'Bare'); ('more', 'hone'); ('more', 'moors'); ('more', 'frore'); ('more', 'moory'); ('more', 'rove'); ('more', 'Moore'); ('more', 'mone'); ('more', 'rote'); ('more', 'doge'); ('more', 'lorn'); ('more', 'horde'); ('than', 'Akan'); ('than', 'Shen'); ('than', 'Chun'); ('than', 'whar'); ('than', 'tram'); ('than', 'Joan'); ('than', 'hain'); ('than', 'tiar'); ('than', 'Cham'); ('than', 'Sham'); ('than', 'team'); ('than', 'Chian'); ('than', 'twang'); ('place', 'pare'); ('place', 'flare'); ('place', 'peach'); ('place', 'flake'); ('place', 'clack'); ('place', 'lacy'); ('place', 'blare'); ('woman', 'Homam'); ('woman', 'Joan'); ('woman', 'Koran'); ('woman', 'woodman'); ('woman', 'Iowan'); ('friend', 'pried'); ('both', 'bitch'); ('both', 'cote'); ('both', 'boar'); ('both', 'sith'); ('both', 'blotch'); ('both', 'batch'); ('both', 'quoth'); ('both', 'byth'); ('both', 'rote'); ('both', 'mothy'); ('both', 'posh'); ('both', 'froth'); ('hold', 'holly'); ('hold', 'goad'); ('hold', 'sola'); ('hold', 'solo'); ('hold', 'Cholo'); ('hold', 'thole'); ('hold', 'hone'); ('hold', 'poly'); ('hold', 'rood'); ('hold', 'wold'); ('hold', 'hound'); ('hold', 'honk'); ('hold', 'hulk'); ('hold', 'horde'); ('being', 'boring'); ('being', 'blink'); ('being', 'vying'); ('being', 'bung'); ('being', 'rein'); ('being', 'baring'); ('away', 'award'); ('away', 'anyway'); ('away', 'wavy'); ('away', 'Malay'); ('away', 'quay'); ('away', 'waxy'); ('away', 'ashy'); ('they', 'Shen'); ('together', 'tether'); ('together', 'tother'); ('just', 'gusty'); ('just', 'curt'); ('just', 'cult'); ('just', 'jure'); ('just', 'joist'); ('just', 'pest'); ('just', 'joust'); ('just', 'adust'); ('just', 'Tush'); ('just', 'tush'); ('just', 'kist'); ('just', 'gist'); ('just', 'duet'); ('what', 'chapt'); ('what', 'whar'); ('what', 'drat'); ('what', 'Cham'); ('what', 'Sham'); ('what', 'whipt'); ('what', 'wart'); ('what', 'fiat'); ('indeed', 'inbred'); ('were', 'pare'); ('were', 'Beri'); ('were', 'Mede'); ('were', 'Neri'); ('were', 'fern'); ('were', 'sare'); ('were', 'serf'); ('were', 'sera'); ('were', 'jure'); ('were', 'ewer'); ('were', 'Bare'); ('were', 'terse'); ('were', 'wage'); ('were', 'wart'); ('were', 'germ'); ('power', 'porker'); ('power', 'hewer'); ('power', 'mover'); ('power', 'pope'); ('power', 'toper'); ('power', 'goer'); ('power', 'bowler'); ('power', 'pored'); ('power', 'piper'); ('power', 'ewer'); ('power', 'poser'); ('power', 'dower'); ('rather', 'railer'); ('rather', 'hater'); ('rather', 'catcher'); ('rather', 'tether'); ('rather', 'tother'); ('rather', 'bather'); ('rather', 'rammer'); ('rather', 'patter'); ('rather', 'patcher'); ('rather', 'Luther'); ('rather', 'breather'); ('much', 'muff'); ('much', 'pugh'); ('much', 'amuck'); ('much', 'Tush'); ('much', 'tush'); ('much', 'tuck'); ('much', 'mica'); ('much', 'gulch'); ('much', 'muck'); ('think', 'clink'); ('think', 'thyine'); ('think', 'whisk'); ('think', 'chink'); ('think', 'blink'); ('think', 'prink'); ('think', 'chinks'); ('think', 'trine'); ('think', 'honk'); ('think', 'thinly'); ('think', 'shirk'); ('well', 'bely'); ('well', 'teil'); ('well', 'yelp'); ('well', 'Lowell'); ('well', 'peel'); ('well', 'null'); ('well', 'eely'); ('well', 'gill'); ('well', 'rill'); ('well', 'cull'); ('well', 'aswell'); ('well', 'wold'); ('well', 'mall'); ('these', 'Phebe'); ('these', 'thesis'); ('these', 'thole'); ('these', 'terse'); ('which', 'wench'); ('which', 'whisk'); ('which', 'hitch'); ('which', 'wick'); ('which', 'hish'); ('which', 'whipt'); ('which', 'winch'); ('which', 'whisp'); ('many', 'moony'); ('many', 'bandy'); ('many', 'marm'); ('many', 'Hans'); ('many', 'Danny'); ('many', 'banc'); ('many', 'lanky'); ('many', 'mala'); ('many', 'wavy'); ('many', 'waxy'); ('many', 'manes'); ('many', 'Manx'); ('many', 'cany'); ('many', 'oary'); ('many', 'dang'); ('many', 'nant'); ('many', 'mone'); ('many', 'lacy'); ('many', 'maya'); ('many', 'mall'); ('present', 'credent'); ('that', 'chapt'); ('that', 'whar'); ('that', 'tram'); ('that', 'tact'); ('that', 'tort'); ('that', 'tout'); ('that', 'drat'); ('that', 'tiar'); ('that', 'Cham'); ('that', 'Sham'); ('that', 'team'); ('that', 'fiat'); ('came', 'rave'); ('came', 'cramp'); ('came', 'carte'); ('came', 'cote'); ('came', 'pare'); ('came', 'Rama'); ('came', 'crate'); ('came', 'Page'); ('came', 'fake'); ('came', 'sare'); ('came', 'daze'); ('came', 'caper'); ('came', 'cite'); ('came', 'cove'); ('came', 'Bare'); ('came', 'nape'); ('came', 'tape'); ('came', 'eave'); ('came', 'wage'); ('came', 'cany'); ('came', 'chime'); ('came', 'craze'); ('came', 'rime'); ('came', 'Campe'); ('came', 'cine'); ('came', 'acme'); ('came', 'dime'); ('came', 'cute'); ('came', 'cache'); ('first', 'flirt'); ('first', 'kist'); ('first', 'firth'); ('first', 'gist'); ('first', 'fiat'); ('brought', 'borough'); ('this', 'teil'); ('this', 'Lois'); ('this', 'whisk'); ('this', 'thesis'); ('this', 'Whig'); ('this', 'ibis'); ('this', 'hish'); ('this', 'tars'); ('this', 'togs'); ('this', 'chid'); ('this', 'whisp'); ('this', 'iris'); ('this', 'Rais'); ('thought', 'hough'); ('thought', 'thoughted'); ('over', 'mover'); ('over', 'toper'); ('over', 'goer'); ('over', 'aver'); ('over', 'viver'); ('over', 'ewer'); ('over', 'cove'); ('over', 'trover'); ('over', 'poser'); ('over', 'veer'); ('over', 'dower'); ('over', 'rove'); ('over', 'drover'); ('over', 'otter'); ('over', 'user'); ('over', 'ovum'); ('people', 'pestle'); ('people', 'pope'); ('gone', 'cote'); ('gone', 'goad'); ('gone', 'Jose'); ('gone', 'gwine'); ('gone', 'pope'); ('gone', 'ozone'); ('gone', 'goer'); ('gone', 'dune'); ('gone', 'gory'); ('gone', 'cove'); ('gone', 'zoned'); ('gone', 'Boone'); ('gone', 'hone'); ('gone', 'rove'); ('gone', 'tong'); ('gone', 'mone'); ('gone', 'gaine'); ('gone', 'cine'); ('gone', 'conn'); ('gone', 'honk'); ('gone', 'Mont'); ('gone', 'rote'); ('gone', 'bonze'); ('gone', 'crone'); ('gone', 'doge'); ('left', 'vext'); ('left', 'lief'); ('left', 'clift'); ('left', 'sept'); ('left', 'bleat'); ('left', 'pest'); ('left', 'luff'); ('left', 'hent'); ('left', 'teff'); ('left', 'raft'); ('left', 'heft'); ('left', 'clef'); ('after', 'lifter'); ('after', 'ante'); ('after', 'canter'); ('after', 'aver'); ('after', 'aider'); ('after', 'garter'); ('after', 'hater'); ('after', 'halter'); ('after', 'attar'); ('after', 'altern'); ('after', 'wafter'); ('after', 'afear'); ('after', 'otter'); ('after', 'patter'); ('then', 'Shen'); ('then', 'Chun'); ('then', 'mien'); ('then', 'Ghent'); ('then', 'Glen'); ('then', 'hent'); ('only', 'holly'); ('only', 'bely'); ('only', 'Ally'); ('only', 'eely'); ('only', 'poly'); ('only', 'inlay'); ('only', 'oary'); ('only', 'inly'); ('only', 'bonny'); ('every', 'revere'); ('every', 'aver'); ('every', 'ewer'); ('every', 'levers'); ('every', 'eely'); ('every', 'revery'); ('every', 'faery'); ('there', 'Phebe'); ('there', 'shire'); ('there', 'thole'); ('there', 'terse'); ('there', 'tiered'); ('there', 'cohere'); ('always', 'alias'); ('morning', 'wording'); ('morning', 'Dorking'); ('morning', 'mooing'); ('morning', 'boring'); ('morning', 'lording'); ('morning', 'goring'); ('morning', 'moping'); ('work', 'nark'); ('work', 'gory'); ('work', 'tort'); ('work', 'corky'); ('work', 'wick'); ('work', 'wold'); ('work', 'wart'); ('work', 'honk'); ('work', 'lorn'); ('want', 'Hans'); ('want', 'tact'); ('want', 'banc'); ('want', 'ante'); ('want', 'wavy'); ('want', 'waxy'); ('want', 'Manx'); ('want', 'wage'); ('want', 'cany'); ('want', 'dang'); ('want', 'nant'); ('want', 'hent'); ('want', 'wart'); ('want', 'raft'); ('want', 'Mont'); ('want', 'twang'); ('would', 'souled'); ('would', 'wold'); ('would', 'boule'); ('would', 'youl'); ('would', 'hound'); ('felt', 'vext'); ('felt', 'bely'); ('felt', 'yelp'); ('felt', 'sept'); ('felt', 'fern'); ('felt', 'cult'); ('felt', 'eely'); ('felt', 'pest'); ('felt', 'Delta'); ('felt', 'hent'); ('felt', 'delta'); ('felt', 'heft'); ('felt', 'fiat'); ('five', 'rave'); ('five', 'tile'); ('five', 'Nice'); ('five', 'bile'); ('five', 'Olive'); ('five', 'fake'); ('five', 'viver'); ('five', 'cite'); ('five', 'cove'); ('five', 'waive'); ('five', 'eave'); ('five', 'rife'); ('five', 'riven'); ('five', 'rove'); ('five', 'rime'); ('five', 'rite'); ('five', 'cine'); ('five', 'hives'); ('five', 'dime'); ('five', 'lite'); ('five', 'aide'); ('five', 'fiat'); ('through', 'borough'); ('through', 'hough'); ('here', 'pare'); ('here', 'hewer'); ('here', 'Beri'); ('here', 'Mede'); ('here', 'Neri'); ('here', 'Phebe'); ('here', 'fern'); ('here', 'shire'); ('here', 'sare'); ('here', 'serf'); ('here', 'sera'); ('here', 'jure'); ('here', 'Bare'); ('here', 'terse'); ('here', 'hone'); ('here', 'hent'); ('here', 'germ'); ('here', 'heft'); ('here', 'cohere'); ('here', 'herby'); ('here', 'horde'); ('last', 'laud'); ('last', 'tact'); ('last', 'laity'); ('last', 'baste'); ('last', 'lass'); ('last', 'clapt'); ('last', 'bass'); ('last', 'pest'); ('last', 'nant'); ('last', 'kist'); ('last', 'wart'); ('last', 'lisp'); ('last', 'lacy'); ('last', 'raft'); ('last', 'gist'); ('seven', 'Devon'); ('seven', 'riven'); ('seven', 'sloven'); ('seven', 'semen'); ('soon', 'Coos'); ('soon', 'moony'); ('soon', 'Joan'); ('soon', 'colon'); ('soon', 'noun'); ('soon', 'sola'); ('soon', 'solo'); ('soon', 'poop'); ('soon', 'Boone'); ('soon', 'ebon'); ('soon', 'swoop'); ('soon', 'loon'); ('soon', 'rood'); ('soon', 'conn'); ('soon', 'sunn'); ('soon', 'Moor'); ('soon', 'lorn'); ('their', 'teil'); ('their', 'thesis'); ('each', 'detach'); ('each', 'wench'); ('each', 'tact'); ('each', 'hack'); ('each', 'batch'); ('each', 'peach'); ('each', 'leach'); ('each', 'eave'); ('each', 'ranch'); ('each', 'lacy'); ('each', 'beachy'); ('each', 'cache'); ('each', 'neath'); ('other', 'gopher'); ('other', 'tether'); ('other', 'tother'); ('other', 'bather'); ('other', 'otter'); ('other', 'Luther'); ('such', 'sith'); ('such', 'pugh'); ('such', 'suds'); ('such', 'Tush'); ('such', 'tush'); ('such', 'tuck'); ('such', 'gulch'); ('such', 'muck'); ('such', 'sunn'); ('such', 'slush'); ('whom', 'Shoa'); ('whom', 'whar'); ('whom', 'Cham'); ('whom', 'rhomb'); ('whom', 'Sham'); ('could', 'souled'); ('could', 'cult'); ('could', 'coup'); ('could', 'cull'); ('could', 'curd'); ('could', 'wold'); ('could', 'boule'); ('could', 'courb'); ('could', 'youl'); ('could', 'hound'); ('speak', 'squeak'); ('speak', 'sprat'); ('speak', 'sneak'); ('speak', 'aleak'); ('speak', 'apeak'); ('speak', 'sear'); ('never', 'hewer'); ('never', 'mover'); ('never', 'revere'); ('never', 'aver'); ('never', 'viver'); ('never', 'ewer'); ('never', 'levers'); ('never', 'revery'); ('never', 'veer'); ('never', 'vexer'); ('find', 'cine'); ('find', 'finder'); ('find', 'zinc'); ('find', 'vina'); ('find', 'fiat'); ('going', 'gwine'); ('going', 'mooing'); ('going', 'nosing'); ('going', 'boring'); ('going', 'gosling'); ('going', 'vying'); ('going', 'yoking'); ('going', 'goring'); ('going', 'toying'); ('going', 'groin'); ('going', 'wooing'); ('going', 'glozing'); ('going', 'tong'); ('going', 'gaine'); ('going', 'moping'); ('half', 'gala'); ('half', 'hack'); ('half', 'halve'); ('half', 'raff'); ('half', 'mala'); ('half', 'hain'); ('half', 'hulk'); ('half', 'mall'); ('them', 'Shen'); ('them', 'tram'); ('them', 'anthem'); ('them', 'Cham'); ('them', 'Sham'); ('them', 'team'); ('them', 'thrum'); ('great', 'Trent'); ('great', 'exeat'); ('great', 'Croat'); ('great', 'bleat'); ('great', 'grab'); ('great', 'drat'); ('great', 'gerent'); ('great', 'gloat'); ('must', 'muff'); ('must', 'gusty'); ('must', 'curt'); ('must', 'cult'); ('must', 'pest'); ('must', 'muster'); ('must', 'joust'); ('must', 'adust'); ('must', 'Tush'); ('must', 'tush'); ('must', 'kist'); ('must', 'muck'); ('must', 'smut'); ('must', 'gist'); ('must', 'duet'); ('evil', 'teil'); ('evil', 'evilly'); ('life', 'limes'); ('life', 'lief'); ('life', 'clift'); ('life', 'lifter'); ('life', 'tile'); ('life', 'Nice'); ('life', 'bile'); ('life', 'Olive'); ('life', 'libel'); ('life', 'riff'); ('life', 'cite'); ('life', 'jiff'); ('life', 'luff'); ('life', 'rife'); ('life', 'lute'); ('life', 'rime'); ('life', 'rite'); ('life', 'laine'); ('life', 'cine'); ('life', 'lisp'); ('life', 'dime'); ('life', 'lite'); ('life', 'limp'); ('life', 'aide'); ('mind', 'mien'); ('mind', 'mone'); ('mind', 'cine'); ('mind', 'mica'); ('mind', 'zinc'); ('mind', 'vina'); ('body', 'bely'); ('body', 'boar'); ('body', 'bandy'); ('body', 'gory'); ('body', 'bosky'); ('body', 'boozy'); ('body', 'poly'); ('body', 'bossy'); ('body', 'bonny'); ('body', 'embody'); ('though', 'hough'); ('though', 'slough'); ('heart', 'heady'); ('heart', 'hent'); ('heart', 'wart'); ('heart', 'heft'); ('heart', 'sear'); ('heart', 'Lear'); ('time', 'limes'); ('time', 'tile'); ('time', 'Nice'); ('time', 'bile'); ('time', 'tilde'); ('time', 'cite'); ('time', 'tape'); ('time', 'rife'); ('time', 'tiar'); ('time', 'trine'); ('time', 'chime'); ('time', 'rime'); ('time', 'rite'); ('time', 'cine'); ('time', 'acme'); ('time', 'dime'); ('time', 'lite'); ('time', 'limp'); ('time', 'aide'); ('time', 'grime'); ('time', 'titi'); ('time', 'timbre'); ('next', 'vext'); ('next', 'sept'); ('next', 'pest'); ('next', 'nant'); ('next', 'hent'); ('next', 'heft'); ('next', 'neath'); ('give', 'rave'); ('give', 'tile'); ('give', 'Nice'); ('give', 'bile'); ('give', 'gwine'); ('give', 'Olive'); ('give', 'viver'); ('give', 'cite'); ('give', 'cove'); ('give', 'waive'); ('give', 'gill'); ('give', 'eave'); ('give', 'rife'); ('give', 'riven'); ('give', 'rove'); ('give', 'rime'); ('give', 'rite'); ('give', 'gaine'); ('give', 'cine'); ('give', 'hives'); ('give', 'dime'); ('give', 'lite'); ('give', 'gist'); ('give', 'aide'); ('give', 'grime'); ('again', 'gamin'); ('again', 'hain'); ('again', 'agape'); ('again', 'gaine'); ('almost', 'accost'); ('name', 'rave'); ('name', 'pare'); ('name', 'Rama'); ('name', 'Page'); ('name', 'fake'); ('name', 'nark'); ('name', 'sare'); ('name', 'daze'); ('name', 'Bare'); ('name', 'nape'); ('name', 'tape'); ('name', 'eave'); ('name', 'wage'); ('name', 'nard'); ('name', 'rime'); ('name', 'Campe'); ('name', 'nant'); ('name', 'nude'); ('name', 'acme'); ('name', 'dime'); ('name', 'numb'); ('really', 'realty'); ('really', 'royally'); ('among', 'aiming'); ('among', 'Damon'); ('among', 'tong'); ('among', 'mone'); ('among', 'flong'); ('among', 'prong'); ('even', 'Shen'); ('even', 'Devon'); ('even', 'mien'); ('even', 'aver'); ('even', 'ewer'); ('even', 'eaves'); ('even', 'ebon'); ('even', 'Glen'); ('even', 'eave'); ('even', 'riven'); ('even', 'semen'); ('till', 'teil'); ('till', 'tile'); ('till', 'bile'); ('till', 'tilde'); ('till', 'frill'); ('till', 'null'); ('till', 'gill'); ('till', 'tiar'); ('till', 'rill'); ('till', 'troll'); ('till', 'cull'); ('till', 'Gila'); ('till', 'drill'); ('till', 'titi'); ('till', 'mall'); ('made', 'rave'); ('made', 'pare'); ('made', 'Mede'); ('made', 'marm'); ('made', 'Page'); ('made', 'dado'); ('made', 'fake'); ('made', 'sare'); ('made', 'daze'); ('made', 'midge'); ('made', 'mala'); ('made', 'Bare'); ('made', 'nape'); ('made', 'tape'); ('made', 'manes'); ('made', 'eave'); ('made', 'wage'); ('made', 'mone'); ('made', 'nude'); ('made', 'maya'); ('made', 'adze'); ('made', 'aide'); ('made', 'mall'); ('part', 'carte'); ('part', 'pare'); ('part', 'Mara'); ('part', 'marm'); ('part', 'tact'); ('part', 'curt'); ('part', 'nark'); ('part', 'spurt'); ('part', 'sare'); ('part', 'tort'); ('part', 'barm'); ('part', 'Bare'); ('part', 'pest'); ('part', 'pawn'); ('part', 'tars'); ('part', 'nard'); ('part', 'oary'); ('part', 'nant'); ('part', 'wart'); ('part', 'raft'); ('part', 'Spar'); ('part', 'spirt'); ('part', 'vari'); ('part', 'darn'); ('daughter', 'laugher'); ('ever', 'hewer'); ('ever', 'mover'); ('ever', 'goer'); ('ever', 'revere'); ('ever', 'aver'); ('ever', 'viver'); ('ever', 'eider'); ('ever', 'ewer'); ('ever', 'eaves'); ('ever', 'levers'); ('ever', 'revery'); ('ever', 'eave'); ('ever', 'veer'); ('ever', 'vexer'); ('ever', 'user'); ('when', 'Shen'); ('when', 'Chun'); ('when', 'whar'); ('when', 'mien'); ('when', 'Ghent'); ('when', 'Glen'); ('when', 'hent'); ('done', 'cote'); ('done', 'Jose'); ('done', 'pope'); ('done', 'ozone'); ('done', 'dune'); ('done', 'diner'); ('done', 'daze'); ('done', 'douse'); ('done', 'cove'); ('done', 'dozed'); ('done', 'zoned'); ('done', 'Boone'); ('done', 'hone'); ('done', 'dower'); ('done', 'rove'); ('done', 'dang'); ('done', 'tong'); ('done', 'mone'); ('done', 'cine'); ('done', 'conn'); ('done', 'honk'); ('done', 'dime'); ('done', 'Mont'); ('done', 'rote'); ('done', 'bonze'); ('done', 'crone'); ('done', 'doge'); ('thing', 'tiling'); ('thing', 'thyine'); ('thing', 'tiring'); ('thing', 'chink'); ('thing', 'Whig'); ('thing', 'vying'); ('thing', 'toying'); ('thing', 'trine'); ('thing', 'tong'); ('thing', 'timing'); ('thing', 'thinly'); ('thing', 'twang'); ('rest', 'Trent'); ('rest', 'vext'); ('rest', 'cress'); ('rest', 'driest'); ('rest', 'sept'); ('rest', 'resin'); ('rest', 'testy'); ('rest', 'Bess'); ('rest', 'Jesu'); ('rest', 'pest'); ('rest', 'reck'); ('rest', 'rein'); ('rest', 'hent'); ('rest', 'kist'); ('rest', 'roost'); ('rest', 'raft'); ('rest', 'gist'); ('rest', 'heft'); ('rest', 'recast'); ('keep', 'yelp'); ('keep', 'peel'); ('keep', 'kelpy'); ('keep', 'keyed'); ('keep', 'veer'); ('said', 'laud'); ('said', 'snip'); ('said', 'braid'); ('said', 'Maida'); ('said', 'sare'); ('said', 'Maud'); ('said', 'acid'); ('said', 'hain'); ('said', 'sled'); ('said', 'rabid'); ('said', 'Maia'); ('said', 'nard'); ('said', 'valid'); ('said', 'chid'); ('said', 'shard'); ('said', 'stud'); ('said', 'raid'); ('said', 'saga'); ('said', 'Rais'); ('said', 'aide'); ('cannot', 'canned'); ('know', 'trow'); ('know', 'knowe'); ('good', 'goad'); ('good', 'Coos'); ('good', 'goer'); ('good', 'gory'); ('good', 'poop'); ('good', 'loon'); ('good', 'rood'); ('good', 'wold'); ('good', 'Moor'); ('wife', 'tile'); ('wife', 'Nice'); ('wife', 'bile'); ('wife', 'gwine'); ('wife', 'riff'); ('wife', 'cite'); ('wife', 'waive'); ('wife', 'wick'); ('wife', 'jiff'); ('wife', 'wage'); ('wife', 'rife'); ('wife', 'rime'); ('wife', 'rite'); ('wife', 'cine'); ('wife', 'dime'); ('wife', 'lite'); ('wife', 'aide'); ('live', 'rave'); ('live', 'limes'); ('live', 'lief'); ('live', 'tile'); ('live', 'Nice'); ('live', 'bile'); ('live', 'Olive'); ('live', 'libel'); ('live', 'viver'); ('live', 'cite'); ('live', 'cove'); ('live', 'waive'); ('live', 'eave'); ('live', 'rife'); ('live', 'lute'); ('live', 'riven'); ('live', 'rove'); ('live', 'rime'); ('live', 'rite'); ('live', 'laine'); ('live', 'cine'); ('live', 'lisp'); ('live', 'hives'); ('live', 'dime'); ('live', 'lite'); ('live', 'limp'); ('live', 'aide'); ('might', 'blight'); ('might', 'bigot'); ('might', 'wisht'); ('where', 'Phebe'); ('where', 'whar'); ('where', 'shire'); ('where', 'whereso'); ('where', 'wheeze'); ('where', 'cohere'); ('three', 'thrive'); ('three', 'tureen'); ('three', 'thole'); ('three', 'terse'); ('three', 'targe'); ('three', 'shrew'); ('three', 'thrum'); ('dear', 'boar'); ('dear', 'Edgar'); ('dear', 'whar'); ('dear', 'dram'); ('dear', 'drat'); ('dear', 'czar'); ('dear', 'veer'); ('dear', 'tiar'); ('dear', 'debar'); ('dear', 'afear'); ('dear', 'demy'); ('dear', 'team'); ('dear', 'Spar'); ('dear', 'sear'); ('dear', 'darn'); ('dear', 'dual'); ('dear', 'Lear'); ('shall', 'shyly'); ('shall', 'shelly'); ('shall', 'snarl'); ('shall', 'shallop'); ('shall', 'thrall'); ('shall', 'shard'); ('shall', 'scull'); ('shall', 'mall'); ('coming', 'mooing'); ('coming', 'nosing'); ('coming', 'boring'); ('coming', 'domino'); ('coming', 'aiming'); ('coming', 'yoking'); ('coming', 'goring'); ('coming', 'toying'); ('coming', 'coating'); ('coming', 'wooing'); ('coming', 'casing'); ('coming', 'comity'); ('coming', 'moping'); ('coming', 'timing'); ('coming', 'incoming'); ('your', 'boar'); ('your', 'goer'); ('your', 'noun'); ('your', 'coup'); ('your', 'tout'); ('your', 'scour'); ('your', 'courb'); ('your', 'youl'); ('your', 'loup'); ('your', 'Moor'); ('sure', 'soured'); ('sure', 'usurer'); ('sure', 'pare'); ('sure', 'suede'); ('sure', 'dune'); ('sure', 'curt'); ('sure', 'burr'); ('sure', 'spurt'); ('sure', 'shire'); ('sure', 'sare'); ('sure', 'serf'); ('sure', 'super'); ('sure', 'sera'); ('sure', 'snore'); ('sure', 'jure'); ('sure', 'Bare'); ('sure', 'suds'); ('sure', 'scurf'); ('sure', 'lute'); ('sure', 'spume'); ('sure', 'gurge'); ('sure', 'shrew'); ('sure', 'curd'); ('sure', 'nude'); ('sure', 'slue'); ('sure', 'sunn'); ('sure', 'furl'); ('sure', 'cute'); ('will', 'wilily'); ('will', 'tile'); ('will', 'bile'); ('will', 'frill'); ('will', 'null'); ('will', 'wick'); ('will', 'gill'); ('will', 'rill'); ('will', 'cull'); ('will', 'wold'); ('will', 'Gila'); ('will', 'swirl'); ('will', 'drill'); ('will', 'mall'); ('like', 'limes'); ('like', 'lief'); ('like', 'tile'); ('like', 'Nice'); ('like', 'bile'); ('like', 'Olive'); ('like', 'Spike'); ('like', 'fake'); ('like', 'libel'); ('like', 'cite'); ('like', 'flake'); ('like', 'rife'); ('like', 'lute'); ('like', 'rime'); ('like', 'rite'); ('like', 'laine'); ('like', 'cine'); ('like', 'lisp'); ('like', 'dime'); ('like', 'lite'); ('like', 'limp'); ('like', 'aide'); ('poor', 'boar'); ('poor', 'Coos'); ('poor', 'pope'); ('poor', 'goer'); ('poor', 'poop'); ('poor', 'moors'); ('poor', 'poser'); ('poor', 'poly'); ('poor', 'loon'); ('poor', 'rood'); ('poor', 'moory'); ('poor', 'Moore'); ('poor', 'Moor'); ('poor', 'posh'); ('while', 'tile'); ('while', 'bile'); ('while', 'whisk'); ('while', 'shire'); ('while', 'thole'); ('while', 'waive'); ('while', 'chime'); ('while', 'childe'); ('while', 'whipt'); ('while', 'whisp'); ('into', 'ante'); ('into', 'inly'); ('night', 'blight'); ('night', 'bigot'); ('night', 'wisht'); ('whether', 'wheeler'); ('whether', 'wetter'); ('whether', 'tether'); ('take', 'rave'); ('take', 'pare'); ('take', 'taker'); ('take', 'tile'); ('take', 'strake'); ('take', 'Page'); ('take', 'tact'); ('take', 'fake'); ('take', 'sare'); ('take', 'daze'); ('take', 'flake'); ('take', 'Bare'); ('take', 'nape'); ('take', 'tars'); ('take', 'tape'); ('take', 'eave'); ('take', 'wage'); ('take', 'targe'); ('take', 'drake'); ('else', 'Jose'); ('else', 'terse'); ('else', 'eave'); ('else', 'slue'); ('upon', 'ebon'); ('upon', 'loon'); ('make', 'rave'); ('make', 'pare'); ('make', 'taker'); ('make', 'marm'); ('make', 'Page'); ('make', 'fake'); ('make', 'sare'); ('make', 'daze'); ('make', 'mala'); ('make', 'flake'); ('make', 'Bare'); ('make', 'nape'); ('make', 'tape'); ('make', 'manes'); ('make', 'eave'); ('make', 'wage'); ('make', 'unmake'); ('make', 'mone'); ('make', 'drake'); ('make', 'maya'); ('make', 'mall'); ('servant', 'vernant'); ('servant', 'Levant'); ('manner', 'canker'); ('manner', 'canned'); ('manner', 'monger'); ('manner', 'canter'); ('manner', 'mannered'); ('manner', 'pannier'); ('manner', 'lancer'); ('manner', 'manes'); ('manner', 'winner'); ('manner', 'annex'); ('manner', 'gander'); ('manner', 'runner'); ('manner', 'cancer'); ('door', 'boar'); ('door', 'Coos'); ('door', 'goer'); ('door', 'poop'); ('door', 'moors'); ('door', 'loon'); ('door', 'doored'); ('door', 'rood'); ('door', 'moory'); ('door', 'dower'); ('door', 'Moore'); ('door', 'doge'); ('door', 'Moor'); ('right', 'blight'); ('right', 'bigot'); ('right', 'wisht'); ('about', 'tout'); ('about', 'afoul'); ('tell', 'bely'); ('tell', 'teil'); ('tell', 'tile'); ('tell', 'yelp'); ('tell', 'peel'); ('tell', 'null'); ('tell', 'eely'); ('tell', 'gill'); ('tell', 'rill'); ('tell', 'troll'); ('tell', 'cull'); ('tell', 'team'); ('tell', 'teff'); ('tell', 'mall'); ('brother', 'tother'); ('brother', 'bather'); ('brother', 'breather'); ('brother', 'blither'); ('days', 'daub'); ('days', 'Hans'); ('days', 'digs'); ('days', 'data'); ('days', 'dado'); ('days', 'daze'); ('days', 'lass'); ('days', 'bass'); ('days', 'tars'); ('days', 'dang'); ('days', 'maya'); ('days', 'Rais'); ('days', 'darn'); ('come', 'cote'); ('come', 'Jose'); ('come', 'pope'); ('come', 'copse'); ('come', 'coup'); ('come', 'cite'); ('come', 'cove'); ('come', 'hone'); ('come', 'comber'); ('come', 'clomb'); ('come', 'rove'); ('come', 'chime'); ('come', 'rime'); ('come', 'mone'); ('come', 'cine'); ('come', 'conn'); ('come', 'acme'); ('come', 'dime'); ('come', 'rote'); ('come', 'crone'); ('come', 'cute'); ('come', 'doge'); ('call', 'gala'); ('call', 'Ucal'); ('call', 'cult'); ('call', 'null'); ('call', 'mala'); ('call', 'gill'); ('call', 'cany'); ('call', 'rill'); ('call', 'callow'); ('call', 'cull'); ('call', 'scull'); ('call', 'mall'); ('back', 'tact'); ('back', 'hack'); ('back', 'banc'); ('back', 'nark'); ('back', 'batch'); ('back', 'barm'); ('back', 'quack'); ('back', 'Nick'); ('back', 'bunk'); ('back', 'brack'); ('back', 'bass'); ('back', 'wick'); ('back', 'reck'); ('back', 'tuck'); ('back', 'clack'); ('back', 'rick'); ('back', 'muck'); ('back', 'lacy'); ('back', 'gawk'); ('back', 'backer'); ('fire', 'pare'); ('fire', 'tile'); ('fire', 'Nice'); ('fire', 'bile'); ('fire', 'fern'); ('fire', 'fake'); ('fire', 'flirt'); ('fire', 'shire'); ('fire', 'sare'); ('fire', 'flare'); ('fire', 'cite'); ('fire', 'jure'); ('fire', 'Bare'); ('fire', 'rife'); ('fire', 'frore'); ('fire', 'rime'); ('fire', 'rite'); ('fire', 'cine'); ('fire', 'dime'); ('fire', 'lite'); ('fire', 'firth'); ('fire', 'furl'); ('fire', 'aide'); ('fire', 'fiat'); ('found', 'noun'); ('found', 'rotund'); ('found', 'hound'); ('quite', 'quiz'); ('quite', 'cite'); ('quite', 'quilted'); ('quite', 'lute'); ('quite', 'rite'); ('quite', 'quoth'); ('quite', 'lite'); ('quite', 'cute'); ('sort', 'sept'); ('sort', 'curt'); ('sort', 'spurt'); ('sort', 'gory'); ('sort', 'sare'); ('sort', 'serf'); ('sort', 'tort'); ('sort', 'tout'); ('sort', 'sola'); ('sort', 'sera'); ('sort', 'sprat'); ('sort', 'aorta'); ('sort', 'solo'); ('sort', 'snore'); ('sort', 'sorter'); ('sort', 'wart'); ('sort', 'smut'); ('sort', 'spirt'); ('sort', 'Mont'); ('sort', 'lorn'); ('hope', 'cote'); ('hope', 'Jose'); ('hope', 'pope'); ('hope', 'toper'); ('hope', 'copse'); ('hope', 'cove'); ('hope', 'trope'); ('hope', 'hypo'); ('hope', 'thole'); ('hope', 'nape'); ('hope', 'hone'); ('hope', 'tape'); ('hope', 'rove'); ('hope', 'mone'); ('hope', 'honk'); ('hope', 'rote'); ('hope', 'doge'); ('hope', 'horde'); ('went', 'Trent'); ('went', 'vext'); ('went', 'wench'); ('went', 'sept'); ('went', 'Ghent'); ('went', 'pest'); ('went', 'nant'); ('went', 'hent'); ('went', 'wart'); ('went', 'Mont'); ('went', 'heft'); ('cried', 'priced'); ('cried', 'criss'); ('cried', 'crick'); ('cried', 'plied'); ('cried', 'crisped'); ('cried', 'chid'); ('cried', 'pried'); ('better', 'renter'); ('better', 'setter'); ('better', 'sitter'); ('better', 'wetted'); ('better', 'wester'); ('better', 'wetter'); ('better', 'beaker'); ('better', 'netted'); ('better', 'bitters'); ('better', 'beater'); ('better', 'teeter'); ('better', 'tether'); ('better', 'bolter'); ('better', 'bather'); ('better', 'otter'); ('better', 'buster'); ('better', 'patter'); ('those', 'Jose'); ('those', 'trope'); ('those', 'thole'); ('those', 'terse'); ('those', 'hone'); ('those', 'noose'); ('head', 'goad'); ('head', 'heady'); ('head', 'behead'); ('head', 'hent'); ('head', 'team'); ('head', 'heft'); ('head', 'sear'); ('head', 'Lear'); ('believe', 'relievo'); ('mean', 'Akan'); ('mean', 'fern'); ('mean', 'Joan'); ('mean', 'mien'); ('mean', 'medal'); ('mean', 'rein'); ('mean', 'team'); ('mean', 'pecan'); ('mean', 'Texan'); ('mean', 'sear'); ('mean', 'Lear'); ('another', 'anthem'); ('another', 'tother'); ('told', 'goad'); ('told', 'tile'); ('told', 'tilde'); ('told', 'stolid'); ('told', 'tort'); ('told', 'tout'); ('told', 'sola'); ('told', 'solo'); ('told', 'thole'); ('told', 'poly'); ('told', 'togs'); ('told', 'rood'); ('told', 'troll'); ('told', 'wold'); ('told', 'tong'); ('knew', 'knowe'); ('pass', 'pare'); ('pass', 'Hans'); ('pass', 'lass'); ('pass', 'plus'); ('pass', 'oasis'); ('pass', 'Bess'); ('pass', 'bass'); ('pass', 'basso'); ('pass', 'pest'); ('pass', 'pawn'); ('pass', 'tars'); ('pass', 'Passe'); ('pass', 'Rais'); ('pass', 'posh'); ('hear', 'hewer'); ('hear', 'boar'); ('hear', 'healer'); ('hear', 'heady'); ('hear', 'whar'); ('hear', 'czar'); ('hear', 'veer'); ('hear', 'tiar'); ('hear', 'debar'); ('hear', 'afear'); ('hear', 'hent'); ('hear', 'team'); ('hear', 'Spar'); ('hear', 'heft'); ('hear', 'sear'); ('hear', 'Lear'); ('face', 'rave'); ('face', 'pare'); ('face', 'Nice'); ('face', 'Page'); ('face', 'tact'); ('face', 'hack'); ('face', 'fake'); ('face', 'sare'); ('face', 'flare'); ('face', 'daze'); ('face', 'flake'); ('face', 'fasces'); ('face', 'Bare'); ('face', 'nape'); ('face', 'tape'); ('face', 'eave'); ('face', 'wage'); ('face', 'rance'); ('face', 'acme'); ('face', 'lacy'); ('face', 'faucet'); ('face', 'cache'); ('seen', 'Shen'); ('seen', 'sept'); ('seen', 'fern'); ('seen', 'serf'); ('seen', 'peel'); ('seen', 'mien'); ('seen', 'sera'); ('seen', 'sled'); ('seen', 'smeer'); ('seen', 'Glen'); ('seen', 'veer'); ('seen', 'rein'); ('seen', 'skein'); ('seen', 'sunn'); ('seen', 'semen'); ('seen', 'sear'); ('seen', 'scena'); ('turned', 'tureen'); ('turned', 'turner'); ('turned', 'pursed'); ('turned', 'furred'); ('turned', 'turfed'); ('turned', 'sterned'); ('should', 'souled'); ('should', 'shored'); ('should', 'hound'); ('therefore', 'therefor'); ('four', 'boar'); ('four', 'flux'); ('four', 'forum'); ('four', 'goer'); ('four', 'noun'); ('four', 'coup'); ('four', 'tout'); ('four', 'afoul'); ('four', 'scour'); ('four', 'courb'); ('four', 'youl'); ('four', 'loup'); ('four', 'furl'); ('four', 'Moor'); ('none', 'cote'); ('none', 'Jose'); ('none', 'pope'); ('none', 'ozone'); ('none', 'dune'); ('none', 'noun'); ('none', 'nobs'); ('none', 'snore'); ('none', 'cove'); ('none', 'nape'); ('none', 'zoned'); ('none', 'Boone'); ('none', 'hone'); ('none', 'rove'); ('none', 'nant'); ('none', 'tong'); ('none', 'knowe'); ('none', 'mone'); ('none', 'cine'); ('none', 'conn'); ('none', 'honk'); ('none', 'nude'); ('none', 'noose'); ('none', 'Mont'); ('none', 'rote'); ('none', 'bonze'); ('none', 'crone'); ('none', 'doge'); ('year', 'boar'); ('year', 'yelp'); ('year', 'whar'); ('year', 'czar'); ('year', 'veer'); ('year', 'tiar'); ('year', 'debar'); ('year', 'afear'); ('year', 'team'); ('year', 'Spar'); ('year', 'sear'); ('year', 'Lear'); ('bring', 'faring'); ('bring', 'tiring'); ('bring', 'boring'); ('bring', 'blink'); ('bring', 'Trying'); ('bring', 'prink'); ('bring', 'vying'); ('bring', 'briar'); ('bring', 'goring'); ('bring', 'bung'); ('bring', 'cringe'); ('bring', 'trine'); ('bring', 'prong'); ('bring', 'burin'); ('bring', 'baring'); ('bring', 'wrig'); ('bring', 'bringer'); ('young', 'noun'); ('young', 'yoking'); ('young', 'bung'); ('young', 'tong'); ('young', 'youl'); ('young', 'hound'); ('saying', 'lacing'); ('saying', 'salting'); ('saying', 'faring'); ('saying', 'rating'); ('saying', 'assaying'); ('saying', 'sacking'); ('saying', 'Trying'); ('saying', 'vying'); ('saying', 'slaving'); ('saying', 'toying'); ('saying', 'siding'); ('saying', 'pawing'); ('saying', 'casing'); ('saying', 'paving'); ('saying', 'baring'); ('known', 'noun'); ('known', 'adown'); ('known', 'knowe'); ('word', 'worded'); ('word', 'goad'); ('word', 'award'); ('word', 'gory'); ('word', 'tort'); ('word', 'pored'); ('word', 'rood'); ('word', 'nard'); ('word', 'curd'); ('word', 'wold'); ('word', 'wart'); ('word', 'lorn'); ('word', 'horde'); ('nothing', 'nosing'); ('nothing', 'mouthing'); ('nothing', 'frothing'); ('nothing', 'loathing'); ('nothing', 'rotting'); ('nothing', 'dotting'); ('given', 'Sivan'); ('given', 'mien'); ('given', 'viver'); ('given', 'riven'); ('given', 'hives'); ('enough', 'hough'); ('enough', 'slough'); ('open', 'Shen'); ('open', 'pope'); ('open', 'toper'); ('open', 'mien'); ('open', 'Glen'); ('open', 'unopen'); ('look', 'Coos'); ('look', 'looker'); ('look', 'poop'); ('look', 'loam'); ('look', 'loon'); ('look', 'rood'); ('look', 'honk'); ('look', 'loup'); ('look', 'crook'); ('look', 'unlook'); ('look', 'Moor'); ('look', 'lorn'); ('whole', 'Cholo'); ('whole', 'thole'); ('whole', 'hone'); ('whole', 'wold'); ('whole', 'woolen'); ('same', 'rave'); ('same', 'pare'); ('same', 'Rama'); ('same', 'Page'); ('same', 'fake'); ('same', 'sare'); ('same', 'daze'); ('same', 'Bare'); ('same', 'nape'); ('same', 'tape'); ('same', 'eave'); ('same', 'wage'); ('same', 'swage'); ('same', 'spume'); ('same', 'sayer'); ('same', 'rime'); ('same', 'Campe'); ('same', 'acme'); ('same', 'dime'); ('same', 'slue'); ('same', 'Osage'); ('same', 'semen'); ('same', 'saga'); ('small', 'snarl'); ('small', 'mala'); ('small', 'scull'); ('small', 'mall'); ('fell', 'bely'); ('fell', 'teil'); ('fell', 'feller'); ('fell', 'yelp'); ('fell', 'fern'); ('fell', 'peel'); ('fell', 'frill'); ('fell', 'null'); ('fell', 'eely'); ('fell', 'gill'); ('fell', 'rill'); ('fell', 'cull'); ('fell', 'furl'); ('fell', 'mall'); ('love', 'rave'); ('love', 'cote'); ('love', 'Jose'); ('love', 'mover'); ('love', 'Olive'); ('love', 'pope'); ('love', 'cove'); ('love', 'loam'); ('love', 'hone'); ('love', 'eave'); ('love', 'loon'); ('love', 'lute'); ('love', 'rove'); ('love', 'mone'); ('love', 'sloven'); ('love', 'lite'); ('love', 'loup'); ('love', 'rote'); ('love', 'doge'); ('love', 'louse'); ('love', 'lorn'); ('full', 'dully'); ('full', 'cult'); ('full', 'frill'); ('full', 'null'); ('full', 'gill'); ('full', 'rill'); ('full', 'pulp'); ('full', 'cull'); ('full', 'gully'); ('full', 'furl'); ('full', 'hulk'); ('full', 'dual'); ('full', 'scull'); ('full', 'mall'); ('took', 'trow'); ('took', 'Coos'); ('took', 'tort'); ('took', 'tout'); ('took', 'poop'); ('took', 'togs'); ('took', 'loon'); ('took', 'rood'); ('took', 'strook'); ('took', 'tong'); ('took', 'tuck'); ('took', 'honk'); ('took', 'crook'); ('took', 'Moor'); ('whose', 'Jose'); ('whose', 'whisk'); ('whose', 'thole'); ('whose', 'hone'); ('whose', 'whisp'); ('whose', 'noose'); ('return', 'recure'); ('spirit', 'spinet'); ('spirit', 'spurt'); ('spirit', 'sprat'); ('spirit', 'spigot'); ('spirit', 'spirt'); ('still', 'tile'); ('still', 'frill'); ('still', 'gill'); ('still', 'rill'); ('still', 'swirl'); ('still', 'drill'); ('still', 'scull'); ('once', 'Nice'); ('once', 'ante'); ('once', 'pounce'); ('once', 'hone'); ('once', 'mone'); ('once', 'rance'); ('once', 'rounce'); ('once', 'oboe'); ('once', 'bonze'); ('child', 'chink'); ('child', 'chime'); ('child', 'childe'); ('child', 'guild'); ('child', 'chid'); ('strong', 'strow'); ('strong', 'strown'); ('strong', 'strook'); ('strong', 'tong'); ('strong', 'prong'); ('voice', 'Nice'); ('voice', 'voiced'); ('taken', 'taker'); ('taken', 'untaken'); ('taken', 'fake'); ('taken', 'tape'); ('room', 'Coos'); ('room', 'poop'); ('room', 'loam'); ('room', 'roomy'); ('room', 'loon'); ('room', 'rood'); ('room', 'rhomb'); ('room', 'rove'); ('room', 'proem'); ('room', 'roost'); ('room', 'rote'); ('room', 'crook'); ('room', 'Moor'); ('under', 'rudder'); ('under', 'lunger'); ('under', 'umber'); ('under', 'aider'); ('under', 'eider'); ('under', 'bounder'); ('under', 'unset'); ('under', 'sender'); ('under', 'ulcer'); ('under', 'gander'); ('under', 'finder'); ('under', 'udder'); ('under', 'user'); ('under', 'runner'); ('neither', 'tether'); ('neither', 'blither'); ('stood', 'stolid'); ('stood', 'swoop'); ('stood', 'rood'); ('stood', 'strow'); ('stood', 'strook'); ('stood', 'stud'); ('mine', 'tile'); ('mine', 'Nice'); ('mine', 'bile'); ('mine', 'gwine'); ('mine', 'dune'); ('mine', 'diner'); ('mine', 'mien'); ('mine', 'midge'); ('mine', 'cite'); ('mine', 'hone'); ('mine', 'manes'); ('mine', 'rife'); ('mine', 'trine'); ('mine', 'rime'); ('mine', 'mone'); ('mine', 'rite'); ('mine', 'laine'); ('mine', 'gaine'); ('mine', 'cine'); ('mine', 'mica'); ('mine', 'dime'); ('mine', 'lite'); ('mine', 'zinc'); ('mine', 'aide'); ('mine', 'vina'); ('mine', 'lumine'); ('sent', 'Trent'); ('sent', 'vext'); ('sent', 'sept'); ('sent', 'stunt'); ('sent', 'shunt'); ('sent', 'serf'); ('sent', 'sera'); ('sent', 'Ghent'); ('sent', 'pest'); ('sent', 'nant'); ('sent', 'hent'); ('sent', 'smut'); ('sent', 'sunn'); ('sent', 'Mont'); ('sent', 'heft'); ('sent', 'sear'); ('sent', 'scena'); ('high', 'hough'); ('high', 'sith'); ('high', 'digs'); ('high', 'hitch'); ('high', 'pugh'); ('high', 'Whig'); ('high', 'hish'); ('high', 'heigh'); ('gave', 'gala'); ('gave', 'rave'); ('gave', 'pare'); ('gave', 'Page'); ('gave', 'fake'); ('gave', 'halve'); ('gave', 'sare'); ('gave', 'daze'); ('gave', 'aver'); ('gave', 'wavy'); ('gave', 'cove'); ('gave', 'eaves'); ('gave', 'Bare'); ('gave', 'nape'); ('gave', 'waive'); ('gave', 'tape'); ('gave', 'eave'); ('gave', 'wage'); ('gave', 'agape'); ('gave', 'rove'); ('gave', 'gaine'); ('gave', 'gauze'); ('gave', 'gawk'); ('round', 'noun'); ('round', 'rotund'); ('round', 'rood'); ('round', 'rebound'); ('round', 'hound'); ('round', 'orotund'); ('round', 'rounce'); ('looking', 'Dorking'); ('looking', 'mooing'); ('looking', 'licking'); ('looking', 'linking'); ('looking', 'blocking'); ('looking', 'lording'); ('looking', 'yoking'); ('looking', 'booting'); ('looking', 'wooing'); ('looking', 'wooding'); ('looking', 'roofing'); ('looking', 'glooming'); ('sight', 'sith'); ('sight', 'blight'); ('sight', 'spigot'); ('sight', 'bigot'); ('sight', 'sithe'); ('sight', 'wisht'); ('light', 'blight'); ('light', 'bigot'); ('light', 'wisht'); ('water', 'taker'); ('water', 'satyr'); ('water', 'lager'); ('water', 'canter'); ('water', 'aver'); ('water', 'caper'); ('water', 'wester'); ('water', 'wetter'); ('water', 'garter'); ('water', 'hater'); ('water', 'halter'); ('water', 'beater'); ('water', 'wage'); ('water', 'sayer'); ('water', 'wafter'); ('water', 'lated'); ('water', 'bather'); ('water', 'otter'); ('water', 'patter'); ('ground', 'rotund'); ('ground', 'groin'); ('ground', 'hound'); ('ground', 'orotund'); ('truth', 'tout'); ('truth', 'frith'); ('truth', 'tush'); ('truth', 'untruth'); ('truth', 'froth'); ('does', 'Coos'); ('does', 'Lois'); ('does', 'digs'); ('does', 'goer'); ('does', 'nobs'); ('does', 'douse'); ('does', 'dozed'); ('does', 'togs'); ('does', 'dower'); ('does', 'duet'); ('does', 'doge'); ('does', 'poesy'); ('above', 'cove'); ('above', 'abate'); ('above', 'rove'); ('above', 'oboe'); ('forth', 'forum'); ('forth', 'tort'); ('forth', 'aorta'); ('forth', 'frith'); ('forth', 'foray'); ('forth', 'firth'); ('forth', 'foots'); ('forth', 'froth'); ('within', 'witching'); ('side', 'tile'); ('side', 'sith'); ('side', 'Mede'); ('side', 'Nice'); ('side', 'bile'); ('side', 'suede'); ('side', 'tilde'); ('side', 'shire'); ('side', 'sare'); ('side', 'midge'); ('side', 'aider'); ('side', 'eider'); ('side', 'cite'); ('side', 'suds'); ('side', 'slided'); ('side', 'rife'); ('side', 'sithe'); ('side', 'rime'); ('side', 'Dido'); ('side', 'rite'); ('side', 'cine'); ('side', 'nude'); ('side', 'dime'); ('side', 'sidle'); ('side', 'slue'); ('side', 'lite'); ('side', 'aide'); ('hand', 'laud'); ('hand', 'bandy'); ('hand', 'Hans'); ('hand', 'hack'); ('hand', 'banc'); ('hand', 'Maud'); ('hand', 'hain'); ('hand', 'hone'); ('hand', 'Manx'); ('hand', 'cany'); ('hand', 'nard'); ('hand', 'dang'); ('hand', 'nant'); ('hand', 'hent'); ('hand', 'shard'); ('hand', 'hound'); ('hand', 'honk'); ('hand', 'raid'); ('moment', 'memento'); ('moment', 'manent'); ('moment', 'nocent'); ('moment', 'cement'); ('least', 'lass'); ('least', 'bleat'); ('least', 'leach'); ('least', 'pest'); ('least', 'recast'); ('mouth', 'hough'); ('mouth', 'tout'); ('mouth', 'mothy'); ('stand', 'stunt'); ('stand', 'satan'); ('stand', 'shard'); ('stand', 'stud'); ('turn', 'tureen'); ('turn', 'fern'); ('turn', 'curt'); ('turn', 'burr'); ('turn', 'tort'); ('turn', 'turner'); ('turn', 'jure'); ('turn', 'tars'); ('turn', 'tush'); ('turn', 'curd'); ('turn', 'tuck'); ('turn', 'sunn'); ('turn', 'furl'); ('turn', 'burin'); ('turn', 'darn'); ('turn', 'lorn'); ('down', 'Joan'); ('down', 'noun'); ('down', 'pawn'); ('down', 'adown'); ('down', 'loon'); ('down', 'dower'); ('down', 'conn'); ('down', 'Iowan'); ('down', 'doge'); ('down', 'darn'); ('down', 'lorn'); ('peace', 'pare'); ('peace', 'peaty'); ('peace', 'seance'); ('peace', 'peach'); ('peace', 'leach'); ('peace', 'eave'); ('certain', 'terrain'); ('certain', 'sartain'); ('certain', 'vervain'); ('thus', 'Chun'); ('thus', 'tout'); ('thus', 'plus'); ('thus', 'anus'); ('thus', 'tars'); ('thus', 'togs'); ('thus', 'tush'); ('thus', 'Zeus'); ('thus', 'thrum'); ('cast', 'carte'); ('cast', 'chapt'); ('cast', 'tact'); ('cast', 'curt'); ('cast', 'cult'); ('cast', 'baste'); ('cast', 'lass'); ('cast', 'clapt'); ('cast', 'bass'); ('cast', 'pest'); ('cast', 'upcast'); ('cast', 'cany'); ('cast', 'nant'); ('cast', 'kist'); ('cast', 'wart'); ('cast', 'raft'); ('cast', 'gist'); ('cast', 'recast'); ('earth', 'carte'); ('earth', 'eared'); ('earth', 'wart'); ('earth', 'firth'); ('earth', 'neath'); ('Lord', 'goad'); ('Lord', 'Lois'); ('Lord', 'gory'); ('Lord', 'tort'); ('Lord', 'pored'); ('Lord', 'Lloyd'); ('Lord', 'rood'); ('Lord', 'nard'); ('Lord', 'curd'); ('Lord', 'wold'); ('Lord', 'lorn'); ('Lord', 'horde'); ('near', 'boar'); ('near', 'whar'); ('near', 'nark'); ('near', 'sneak'); ('near', 'czar'); ('near', 'veer'); ('near', 'tiar'); ('near', 'nard'); ('near', 'debar'); ('near', 'afear'); ('near', 'team'); ('near', 'Spar'); ('near', 'sear'); ('near', 'neath'); ('near', 'Lear'); ('near', 'Eneas'); ('fear', 'boar'); ('fear', 'whar'); ('fear', 'fern'); ('fear', 'flare'); ('fear', 'friar'); ('fear', 'czar'); ('fear', 'veer'); ('fear', 'tiar'); ('fear', 'debar'); ('fear', 'afear'); ('fear', 'afeard'); ('fear', 'team'); ('fear', 'Spar'); ('fear', 'sear'); ('fear', 'fiat'); ('fear', 'Lear'); ('death', 'detach'); ('death', 'data'); ('death', 'peaty'); ('death', 'peach'); ('death', 'leach'); ('death', 'drat'); ('death', 'delta'); ('death', 'neath'); ('glory', 'gory'); ('glory', 'moory'); ('glory', 'gloat'); ('glory', 'cloy'); ('glory', 'lorn'); ('also', 'basso'); ('also', 'Clio'); ('white', 'whisk'); ('white', 'shire'); ('white', 'cite'); ('white', 'waive'); ('white', 'chime'); ('white', 'whipt'); ('white', 'rite'); ('white', 'whisp'); ('white', 'lite'); ('dead', 'goad'); ('dead', 'heady'); ('dead', 'decade'); ('dead', 'dado'); ('dead', 'dram'); ('dead', 'deaden'); ('dead', 'drat'); ('dead', 'debar'); ('dead', 'demy'); ('dead', 'team'); ('dead', 'sear'); ('dead', 'dual'); ('dead', 'Lear'); ('king', 'vying'); ('king', 'yoking'); ('king', 'bung'); ('king', 'dang'); ('king', 'tong'); ('king', 'kist'); ('king', 'cine'); ('king', 'zinc'); ('king', 'vina'); ('blood', 'Lloyd'); ('blood', 'loon'); ('blood', 'rood'); ('soul', 'noun'); ('soul', 'souled'); ('soul', 'snub'); ('soul', 'coup'); ('soul', 'tout'); ('soul', 'sola'); ('soul', 'solo'); ('soul', 'afoul'); ('soul', 'scour'); ('soul', 'boule'); ('soul', 'youl'); ('soul', 'stud'); ('soul', 'slue'); ('soul', 'smut'); ('soul', 'loup'); ('soul', 'scull'); ('Anne', 'dune'); ('Anne', 'ante'); ('Anne', 'hone'); ('Anne', 'mone'); ('Anne', 'cine'); ('Anne', 'annex'); ('King', 'vying'); ('King', 'bung'); ('King', 'dang'); ('King', 'tong'); ('King', 'cine'); ('King', 'zinc'); ('King', 'vina'); ('thou', 'Shoa'); ('thou', 'trow'); ('thou', 'tout'); ('thou', 'thole'); ('thou', 'thrum'); ('flesh', 'flashy'); ('flesh', 'slush'); ('flesh', 'fleck'); ('land', 'laud'); ('land', 'bandy'); ('land', 'Hans'); ('land', 'banc'); ('land', 'lanky'); ('land', 'Maud'); ('land', 'lass'); ('land', 'Manx'); ('land', 'cany'); ('land', 'nard'); ('land', 'blanc'); ('land', 'dang'); ('land', 'nant'); ('land', 'laine'); ('land', 'lated'); ('land', 'lacy'); ('land', 'raid'); ('gold', 'gala'); ('gold', 'goad'); ('gold', 'goer'); ('gold', 'gory'); ('gold', 'sola'); ('gold', 'solo'); ('gold', 'gill'); ('gold', 'poly'); ('gold', 'rood'); ('gold', 'wold'); ('gold', 'guild'); ('sons', 'Coos'); ('sons', 'Lois'); ('sons', 'Hans'); ('sons', 'nobs'); ('sons', 'slops'); ('sons', 'sola'); ('sons', 'solo'); ('sons', 'suds'); ('sons', 'hone'); ('sons', 'togs'); ('sons', 'tong'); ('sons', 'mone'); ('sons', 'conn'); ('sons', 'honk'); ('sons', 'sunn'); ('sons', 'Mont'); ('heaven', 'healer'); ('heaven', 'eaves'); ('heaven', 'deaden'); ('heaven', 'eave'); ('heaven', 'deafen'); ('ship', 'snip'); ('ship', 'shrimp'); ('ship', 'shire'); ('ship', 'Whig'); ('ship', 'whipt'); ('ship', 'chid'); ('ship', 'whisp'); ('ship', 'shirk'); ('behold', 'behead'); ('behold', 'behoof'); ('city', 'cote'); ('city', 'sith'); ('city', 'laity'); ('city', 'vita'); ('city', 'ceti'); ('city', 'cite'); ('city', 'icily'); ('city', 'cany'); ('city', 'rite'); ('city', 'cine'); ('city', 'comity'); ('city', 'lite'); ('city', 'cute'); ('city', 'cloy'); ('city', 'titi'); ('Moses', 'Jose'); ('Moses', 'poser'); ('unto', 'ante'); ('unto', 'untrod'); ('hath', 'sith'); ('hath', 'hack'); ('hath', 'data'); ('hath', 'hitch'); ('hath', 'batch'); ('hath', 'hain'); ('hath', 'hater'); ('hath', 'hish'); ('hath', 'byth'); ('hath', 'neath'); ('shalt', 'chapt'); ('shalt', 'shyly'); ('shalt', 'shunt'); ('shalt', 'shard'); ('shalt', 'salty'); ('thereof', 'therefor'); ('thee', 'Shen'); ('thee', 'tile'); ('thee', 'Phebe'); ('thee', 'thole'); ('thee', 'tape'); ('sword', 'award'); ('sword', 'snore'); ('sword', 'shored'); ('sword', 'swoop'); ('sword', 'wold'); ('sword', 'shard'); ('sword', 'swirl'); ('thine', 'thrive'); ('thine', 'tile'); ('thine', 'thyine'); ('thine', 'gwine'); ('thine', 'shire'); ('thine', 'chink'); ('thine', 'thole'); ('thine', 'hone'); ('thine', 'trine'); ('thine', 'chime'); ('thine', 'laine'); ('thine', 'gaine'); ('thine', 'cine'); ('thine', 'thinly'); ('priest', 'driest'); ('priest', 'pest'); ('priest', 'plies'); ('priest', 'pried'); ('holy', 'holly'); ('holy', 'bely'); ('holy', 'shyly'); ('holy', 'gory'); ('holy', 'Ally'); ('holy', 'sola'); ('holy', 'solo'); ('holy', 'Cholo'); ('holy', 'thole'); ('holy', 'eely'); ('holy', 'hone'); ('holy', 'poly'); ('holy', 'inly'); ('holy', 'wold'); ('holy', 'honk'); ('holy', 'hulk'); ('David', 'acid'); ('David', 'rabid'); ('David', 'valid'); ('David', 'raid'); ('whale', 'whar'); ('whale', 'halve'); ('whale', 'thole'); ('whale', 'wage'); ('Jesus', 'Bess'); ('Jesus', 'genus'); ('Jesus', 'Jesu'); ('Jesus', 'Janus'); ('Jesus', 'Negus'); ('Jesus', 'Zeus'); ('Christ', 'lyrist'); "
]
}
],
"source": [
"for pair in pairs:\n",
" print(pair, end=\"; \")"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python [conda env:nlp]",
"language": "python",
"name": "conda-env-nlp-py"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.10"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment