当前位置:   article > 正文

Python中文自然语言处理-NLTK 学习笔记1 chapter1_nltk.draw.dispersiondispersion.plot

nltk.draw.dispersiondispersion.plot
from nltk.book import *
  • 1
*** Introductory Examples for the NLTK Book ***
Loading text1, ..., text9 and sent1, ..., sent9
Type the name of the text or sentence to view it.
Type: 'texts()' or 'sents()' to list the materials.
text1: Moby Dick by Herman Melville 1851
text2: Sense and Sensibility by Jane Austen 1811
text3: The Book of Genesis
text4: Inaugural Address Corpus
text5: Chat Corpus
text6: Monty Python and the Holy Grail
text7: Wall Street Journal
text8: Personals Corpus
text9: The Man Who Was Thursday by G . K . Chesterton 1908
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

查看词汇出现的上下文

text1.concordance("Dick")
  • 1
Displaying 25 of 84 matches:
                                     Dick by Herman Melville 1851 ] ETYMOLOGY 
must be the same that some call Moby Dick ." " Moby Dick ?" shouted Ahab . " D
e that some call Moby Dick ." " Moby Dick ?" shouted Ahab . " Do ye know the w
 Death and devils ! men , it is Moby Dick ye have seen -- Moby Dick -- Moby Di
it is Moby Dick ye have seen -- Moby Dick -- Moby Dick !" " Captain Ahab ," sa
ck ye have seen -- Moby Dick -- Moby Dick !" " Captain Ahab ," said Starbuck ,
 Captain Ahab , I have heard of Moby Dick -- but it was not Moby Dick that too
 of Moby Dick -- but it was not Moby Dick that took off thy leg ?" " Who told 
 my hearties all round ; it was Moby Dick that dismasted me ; Moby Dick that b
s Moby Dick that dismasted me ; Moby Dick that brought me to this dead stump I
white whale ; a sharp lance for Moby Dick !" " God bless ye ," he seemed to ha
 white whale ? art not game for Moby Dick ?" " I am game for his crooked jaw ,
l whaleboat ' s bow -- Death to Moby Dick ! God hunt us all , if we do not hun
hunt us all , if we do not hunt Moby Dick to his death !" The long , barbed st
owels to feel fear ! CHAPTER 41 Moby Dick . I , Ishmael , was one of that crew
ividualizing tidings concerning Moby Dick . It was hardly to be doubted , that
on must have been no other than Moby Dick . Yet as of late the Sperm Whale fis
ident ignorantly gave battle to Moby Dick ; such hunters , perhaps , for the m
g and piling their terrors upon Moby Dick ; those things had gone far to shake
ies , which eventually invested Moby Dick with new terrors unborrowed from any
rmen recalled , in reference to Moby Dick , the earlier days of the Sperm Whal
ngs were ready to give chase to Moby Dick ; and a still greater number who , c
 was the unearthly conceit that Moby Dick was ubiquitous ; that he had actuall
their superstitions ; declaring Moby Dick not only ubiquitous , but immortal (
 shaped lower jaw beneath him , Moby Dick had reaped away Ahab ' s leg , as a 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26

查看和目标词出现在相似上下文中的词汇

text2.similar("father")
  • 1
mother sister brother heart wife own name family face house sex
feelings cousin son engagement mind head being attachment choice
  • 1
  • 2

查看两个词出现处相似的上下文

text2.common_contexts(["monstrous","very"])
  • 1
a_pretty is_pretty a_lucky am_glad be_glad
  • 1

绘制词汇在文中的分布表

text1.dispersion_plot(["big", "very", "whale", "pretty"])
  • 1

这里写图片描述

text4.dispersion_plot(["man","woman"])
  • 1

这里写图片描述

展示词汇绝对丰富程度 构建有序的词汇表

number = sorted(set(text3))
len(number)
  • 1
  • 2
2789
  • 1

展示词汇相对丰富程度 平均出现次数

from __future__ import division  #确保使用浮点除法
len(text3)/len(set(text3))
  • 1
  • 2
16.050197203298673
  • 1

特定词在文中出现的百分比

100 * text5.count("lol")/len(text5)
  • 1
1.5640968673628082
  • 1
def lexical_diversity(text):
    return len(text)/len(set(text))

def percentage(count, total):
    return 100 * count / total
  • 1
  • 2
  • 3
  • 4
  • 5
print lexical_diversity(text2)
print percentage(text2.count("sense"),len(text2))
  • 1
  • 2
20.7194497293
0.0218963666158
  • 1
  • 2
ex1= ['Monty', 'Python', 'and', 'the', 'Holy', 'Grail','.']
  • 1
print sorted(ex1)
print len(ex1)
print lexical_diversity(ex1)
print percentage(ex1.count("."),len(ex1))
  • 1
  • 2
  • 3
  • 4
['.', 'Grail', 'Holy', 'Monty', 'Python', 'and', 'the']
7
1.0
14.2857142857
  • 1
  • 2
  • 3
  • 4

频率分布 FreqDist

fdist1 = FreqDist(text2)
fdist1.keys()[:50]
  • 1
  • 2
[u'succour',
 u'four',
 u'woods',
 u'hanging',
 u'woody',
 u'conjure',
 u'looking',
 u'eligible',
 u'scold',
 u'unsuitableness',
 u'meadows',
 u'stipulate',
 u'leisurely',
 u'bringing',
 u'disturb',
 u'internally',
 u'hostess',
 u'mohrs',
 u'persisted',
 u'Does',
 u'succession',
 u'tired',
 u'cordially',
 u'pulse',
 u'elegant',
 u'second',
 u'sooth',
 u'shrugging',
 u'abundantly',
 u'errors',
 u'forgetting',
 u'contributed',
 u'fingers',
 u'increasing',
 u'exclamations',
 u'hero',
 u'leaning',
 u'Truth',
 u'here',
 u'china',
 u'hers',
 u'natured',
 u'substance',
 u'unwillingness',
 u'pretensions',
 u'reports',
 u'NOT',
 u'NOW',
 u'divide',
 u'sweetest']
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
fdist1['sweetest']
  • 1
2
  • 1
fdist1.plot(50, cumulative=True)
  • 1

这里写图片描述

len(text2)
  • 1
141576
  • 1
fdist1.hapaxes()
  • 1
[u'succour',
 u'woody',
 u'conjure',
 u'unsuitableness',
 u'meadows',
 u'stipulate',
 u'leisurely',
 u'hostess',
 u'mohrs',
 u'sooth',
 u'shrugging',
 u'abundantly',
 u'errors',
 u'forgetting',
 u'exclamations',
 u'hero',
 u'Truth',
 u'substance',
 u'reports',
 u'Three',
 u'summons',
 u'forbore',
 u'cherishing',
 u'impartiality',
 u'females',
 u'successful',
 u'irksome',
 u'pursue',
 u'complaining',
 u'significancy',
 u'feature',
 u'embellishments',
 u'hop',
 u'abstraction',
 u'OWN',
 u'entrusted',
 u'keeps',
 u'nonsensical',
 u'restriction',
 u'unexhilarating',
 u'unworthiness',
 u'concurrence',
 u'wrought',
 u'fir',
 u'unforeseen',
 u'recognised',
 u'auditors',
 u'endeavoring',
 u'admirable',
 u'enrich',
 u'wooded',
 u'rumour',
 u'blushes',
 u'ankle',
 u'uninfluenced',
 u'interfering',
 u'preceded',
 u'whip',
 u'toleration',
 u'literature',
 u'diction',
 u'excepting',
 u'mend',
 u'Vanity',
 u'sheet',
 u'estimate',
 u'unstudied',
 u'tempting',
 u'breed',
 u'Please',
 u'clamorous',
 u'blossoms',
 u'ranging',
 u'project',
 u'uncouth',
 u'amusing',
 u'Mansion',
 u'loitered',
 u'tempted',
 u'Extend',
 u'shuffling',
 u'theme',
 u'bliss',
 u'touched',
 u'stammered',
 u'relish',
 u'esteeming',
 u'expediency',
 u'unexpectedly',
 u'playfulness',
 u'rings',
 u'score',
 u'scorn',
 u'unobtrusiveness',
 u'sacrificing',
 u'refinement',
 u'demanded',
 u'argue',
 u'adapted',
 u'Willing',
 u'Comparisons',
 u'tallest',
 u'exactness',
 u'incommode',
 u'worked',
 u'foreplanned',
 u'conditioned',
 u'anticipating',
 u'Valley',
 u'dryness',
 u'fairly',
 u'boiled',
 u'qualifications',
 u'confusedly',
 u'redeem',
 u'echoed',
 u'misconstruction',
 u'beset',
 u'exclaiming',
 u'rushing',
 u'ham',
 u'obedient',
 u'disagreement',
 u'birth',
 u'replace',
 u'remind',
 u'misled',
 u'beneficial',
 u'honeysuckles',
 u'fox',
 u'witty',
 u'losing',
 u'memorable',
 u'bowing',
 u'Think',
 u'shaken',
 u'nought',
 u'Scotland',
 u'respectably',
 u'administer',
 u'beings',
 u'despised',
 u']',
 u'denoting',
 u'safeguard',
 u'humbled',
 u'mighty',
 u'juvenile',
 u'Sit',
 u'restorative',
 u'acacia',
 u'unlover',
 u'protested',
 u'solicitation',
 u'dotted',
 u'circumstanced',
 u'intend',
 u'intent',
 u'rolling',
 u'beamed',
 u'whoever',
 u'indolent',
 u'vex',
 u'recurrence',
 u'fullest',
 u'speculation',
 u'occurrence',
 u'celebrated',
 u'funeral',
 u'commonly',
 u'Born',
 u'Frosts',
 u'reclaim',
 u'ESTEEM',
 u'prefer',
 u'obstinacy',
 u'humouring',
 u'undergone',
 u'wicket',
 u'sisterly',
 u'resuscitation',
 u'Those',
 u'loving',
 u'refrain',
 u'odious',
 u'militated',
 u'Pope',
 u'Midsummer',
 u'believes',
 u'indolence',
 u'stole',
 u'deserves',
 u'poking',
 u'cavil',
 u'dove',
 u'stress',
 u'canvassing',
 u'inhabiting',
 u'swollen',
 u'Encouraged',
 u'unsolicited',
 u'LESS',
 u'quarrelled',
 u'tore',
 u'derive',
 u'haughty',
 u'Folly',
 u'bashful',
 u'overpowering',
 u'establishing',
 u'bowling',
 u'prudently',
 u'retailed',
 u'giddy',
 u'astray',
 u'investigation',
 u'Offended',
 u'complicated',
 u'remainder',
 u'patronage',
 u'crossness',
 u'undesirable',
 u'jumbled',
 u'conscientiously',
 u'habitation',
 u'partook',
 u'city',
 u'2',
 u'stuffed',
 u'JOHN',
 u'representing',
 u'Seven',
 u'Exert',
 u'depressed',
 u'coats',
 u'KNEW',
 u'tasted',
 u'jewels',
 u'tastes',
 u'lurking',
 u'BOTH',
 u'Half',
 u'coincide',
 u'opposite',
 u'discerning',
 u'horridly',
 u'impoverishing',
 u'blockhead',
 u'bright',
 u'transact',
 u'uppermost',
 u'dispute',
 u'dissimilar',
 u'condemning',
 u'Having',
 u'Unaccountable',
 u'borrow',
 u'landlord',
 u'noisier',
 u'CATCHING',
 u'mutton',
 u'refreshed',
 u'apiece',
 u'rapacious',
 u'thickly',
 u'cramps',
 u'plantation',
 u'stretch',
 u'west',
 u'braving',
 u'practised',
 u'hilarity',
 u'possessor',
 u'endured',
 u'.)--',
 u'regularity',
 u'fame',
 u'parliament',
 u'reanimate',
 u'unemployed',
 u'sterling',
 u'defy',
 u'entanglement',
 u'devolved',
 u'veal',
 u'judiciously',
 u'scrape',
 u'vague',
 u'doubtingly',
 u'stranger',
 u'discarded',
 u'militate',
 u'divine',
 u'restoring',
 u'destroys',
 u'biased',
 u";'",
 u'edtions',
 u'meal',
 u'practicable',
 u'image',
 u'widower',
 u'dawned',
 u'lounging',
 u'sealed',
 u'DRAW',
 u'imbibed',
 u'survived',
 u'buying',
 u'abused',
 u'pull',
 u'rage',
 u'abuses',
 u'darker',
 u'Hon',
 u'accents',
 u'stealing',
 u'associating',
 u'ay',
 u'blinded',
 u'Gracious',
 u'accosted',
 u'mass',
 u'original',
 u'curate',
 u'caused',
 u'reasoning',
 u'improperly',
 u'Biddy',
 u'Precious',
 u'Conversation',
 u'LOOK',
 u'desertion',
 u'honourably',
 u'Drury',
 u'outdone',
 u'mound',
 u'cessation',
 u'regiment',
 u'crowned',
 u'6',
 u'inquisitiveness',
 u'spoilt',
 u'Relate',
 u'foundations',
 u'keeping',
 u'gallop',
 u'unbiased',
 u'salts',
 u'reproachfully',
 u'respective',
 u'imminent',
 u'enlarge',
 u'relinquished',
 u'disgraced',
 u'sympathize',
 u'imagery',
 u'passages',
 u'incessantly',
 u'installed',
 u'signs',
 u'shuddering',
 u'propose',
 u'likeness',
 u'assemblies',
 u'Newton',
 u'truths',
 u'upstairs',
 u'disclaiming',
 u'grandmothers',
 u'exorbitant',
 u'embellishment',
 u'candlelight',
 u'silks',
 u'denoted',
 u'impudence',
 u'risen',
 u'rises',
 u'II',
 u'owners',
 u'decently',
 u'afflictions',
 u'instigation',
 u'rooted',
 u'transgressed',
 u'disordered',
 u'heads',
 u'threatening',
 u'Twill',
 u'demonstrations',
 u'reprobate',
 u'extorted',
 u'reliance',
 u'interrupting',
 u'unequal',
 u'accommodations',
 u'defended',
 u'surpassed',
 u'degraded',
 u'occupation',
 u'wrapt',
 u'detaining',
 u'waistcoats',
 u'blameable',
 u'remedy',
 u'closely',
 u'compass',
 u'cruelly',
 u'enemy',
 u'proclaim',
 u'potent',
 u'outwardly',
 u'seconded',
 u'hauteur',
 u'premises',
 u'Against',
 u'untouched',
 u'retarded',
 u'bely',
 u'archness',
 u'publishing',
 u'proprietor',
 u'39',
 u'hardness',
 u'slyly',
 u'Cold',
 u'Concern',
 u'indelicacy',
 u'beautifully',
 u'vanish',
 u'renounced',
 u'shorten',
 u'failure',
 u'doat',
 u'infamous',
 u'oddest',
 u'comprise',
 u'Ungracious',
 u'detract',
 u'THREE',
 u'conclusions',
 u'servilely',
 u'admission',
 u'parents',
 u'depravity',
 u'reverted',
 u'emergency',
 u'emergence',
 u'projects',
 u'stylish',
 u'disorder',
 u'palm',
 u'curious',
 u'eclat',
 u'novelty',
 u'religion',
 u'seclusion',
 u'discontented',
 u'unintentional',
 u'awaited',
 u'appropriate',
 u'repaid',
 u'spending',
 u'occupy',
 u'unknowingly',
 u'considerably',
 u'undeserving',
 u'patronised',
 u'nieces',
 u'unpremeditated',
 u'genial',
 u'reconcile',
 u'defined',
 u'presided',
 u'surveying',
 u'stiffly',
 u'invalid',
 u'condolence',
 u'livings',
 u'prosecution',
 u'anticipations',
 u'rescued',
 u'indecorous',
 u'scratch',
 u'broader',
 u'amiss',
 u'carelessly',
 u'resources',
 u'panting',
 u'detested',
 u'Dennison',
 u'inelegant',
 u'incoherently',
 u'imply',
 u'henceforth',
 u'flowing',
 u'scenery',
 u'rascally',
 u'gathered',
 u'Gibson',
 u'scornfully',
 u'desiring',
 u'cheered',
 u'encroachments',
 u'pencil',
 u'laboured',
 u'MADAM',
 u'bodily',
 u'foolishly',
 u'retreated',
 u'streamed',
 u'purposes',
 u'await',
 u'preferring',
 u'huswifes',
 u'counter',
 u'alloy',
 u'recreating',
 u'chosen',
 u'imperfection',
 u'spoiling',
 u'unbounded',
 u'forfeiting',
 u'billiard',
 u'conformity',
 u'undertaking',
 u'traced',
 u'scanty',
 u'slightingly',
 u'thirteen',
 u'irritation',
 u'wander',
 u'alighted',
 u'blown',
 u'alleged',
 u'Farm',
 u'malady',
 u'enforcement',
 u'stomach',
 u'HERS',
 u'tortured',
 u'torrent',
 u'ingenious',
 u'separations',
 u'gently',
 u'fourteenth',
 u'viewed',
 u'patroness',
 u'manor',
 u'courtesy',
 u'wounded',
 u'bedroom',
 u'unconnected',
 u'trivial',
 u'Grandeur',
 u'conciliate',
 u'quickened',
 u'riding',
 u'handle',
 u'undivided',
 u'Whether',
 u'familiar',
 u'listener',
 u'Once',
 u'contemptible',
 u'taxed',
 u'guessing',
 u'allusion',
 u'incurable',
 u'packed',
 u'illaudable',
 u'destiny',
 u'insulting',
 u'quickest',
 u'barbarously',
 u'observable',
 u'whispering',
 u'meantime',
 u'powered',
 u'poured',
 u'feather',
 u'>',
 u'hateful',
 u'banish',
 u'LUCY',
 u'westerly',
 u'Supported',
 u've',
 u':--"',
 u'immoderately',
 u'pangs',
 u'romance',
 u'feminine',
 u'covenant',
 u'ball',
 u'monopolize',
 u'expand',
 u'philippic',
 u'patterns',
 u'afflicted',
 u'clergyman',
 u'fluctuating',
 u'goings',
 u'incessant',
 u'descendant',
 u'chairs',
 u'inconstant',
 u'recognition',
 u'disbelief',
 u'apprehended',
 u'hoarded',
 u'undoubtingly',
 u'drift',
 u'repaired',
 u'merited',
 u'concession',
 u'diabolical',
 u'cultivated',
 u'roads',
 u'quarrelling',
 u'Early',
 u'prepossessing',
 u'stocks',
 u'justifying',
 u'encouragements',
 u'-?"',
 u'MIND',
 u'delivery',
 u'grate',
 u'chained',
 u'detestably',
 u'cordial',
 u'rightly',
 u'nurses',
 u'contribute',
 u'faintness',
 u'denote',
 u'disengagement',
 u'effected',
 u'expensiveness',
 u'efficacy',
 u'excellencies',
 u'trials',
 u'compares',
 u'behold',
 u'illusion',
 u'dismiss',
 u'surplice',
 u'abhor',
 u'unspeakable',
 u'saves',
 u'oldest',
 u'effectually',
 u'sellers',
 u'disobedient',
 u'immoveable',
 u'FAITH',
 u'Strange',
 u'incompatible',
 u'Sally',
 u'Brown',
 u'admirers',
 u'equals',
 u'Queen',
 u'Hush',
 u'angrily',
 u'uncivil',
 u'negative',
 u'knoll',
 u'administering',
 u'striving',
 u'ere',
 u'transparency',
 u'blooming',
 u'fanciful',
 u'unwarily',
 u'indubitable',
 u'taverns',
 u'nipped',
 u'frequency',
 u'befallen',
 u'production',
 u'uncordial',
 u'break',
 u'band',
 u'bank',
 u'rocks',
 u'lifted',
 u'Confess',
 u'Parrys',
 u'remorse',
 u'medicine',
 u'disagreements',
 u'mourning',
 u'disputes',
 u'forcibly',
 u'detecting',
 u'unfulfilled',
 u'caprice',
 u'festival',
 u'footsteps',
 u'Going',
 u'thick',
 u'pardonable',
 u'seduction',
 u'compromise',
 u'dogs',
 u'Preparation',
 u'splendidly',
 u'contrasted',
 u'interests',
 u'encumbered',
 u'maxims',
 u'completed',
 u'circles',
 u'exercised',
 u'extending',
 u'accounted',
 u'respectfully',
 u'wrung',
 u'painfully',
 u'guidance',
 u'deepest',
 u'adequate',
 u'warmest',
 u'yielded',
 u'covering',
 u'exchanged',
 u'rung',
 u'observer',
 u'discussions',
 u'draws',
 u'revealment',
 u'PARTIES',
 u'confessedly',
 u'blights',
 u'packages',
 u'climate',
 u'cod',
 u'negotiation',
 u'collecting',
 u'widen',
 u'seizure',
 u'dawdled',
 u'petty',
 u'attacked',
 u'inconsolable',
 u'deterred',
 u'Westminster',
 u'east',
 u'aim',
 u'Esteem',
 u'sting',
 u'slighting',
 u'1811',
 u'bedchamber',
 u'acquitting',
 u'fuss',
 u'inheritor',
 u'swell',
 u'hang',
 u'confiding',
 u'blamed',
 u'Mind',
 u'Mine',
 u'mingle',
 u'slighter',
 u'adding',
 u'belongs',
 u'tricking',
 u'retreat',
 u'invaluable',
 u'critique',
 u'Epicurism',
 u'comments',
 u'illustration',
 u'impenetrable',
 u'newspapers',
 u'banker',
 u'horizon',
 u'Priory',
 u'rendering',
 u'amidst',
 u'unchanging',
 u'editions',
 u'unusually',
 u'TWO',
 u'evidence',
 u'subsist',
 u'stake',
 u'holding',
 u'test',
 u'brothers',
 u'assiduous',
 u'paces',
 u'Bishop',
 u'beds',
 u'songs',
 u'contributing',
 u'mounted',
 u'disapproves',
 u'gigs',
 u'disapproved',
 u'puppyism',
 u'feebly',
 u'blast',
 u'feeble',
 u'Just',
 u'altering',
 u'agitate',
 u'niggardly',
 u'helpless',
 u'foregoing',
 u'uniform',
 u'Imagine',
 u'During',
 u'appeal',
 u'muslin',
 u'merriment',
 u'pillow',
 u'retired',
 u'captivate',
 u'Pity',
 u'club',
 u'ninny',
 u'clue',
 u'commissioned',
 u'Down',
 u'hears',
 u'gales',
 u'Dullness',
 u'malevolence',
 u'economy',
 u'superintend',
 u'?)',
 u'flourish',
 u'lifting',
 u'candles',
 u'crept',
 u'playful',
 u'vicinity',
 u'inflicted',
 u'Concealing',
 u'Norfolk',
 u'hall',
 u'wont',
 u'concerto',
 u'Misses',
 u'bursts',
 u'furnishing',
 u'em',
 u'directing',
 u'naming',
 u'shown',
 u'perfections',
 u'oftenest',
 u'disapprobation',
 u'temporizing',
 u'Impatient',
 u'intruding',
 u'counteracted',
 u'promotion',
 u'occupations',
 u'omitted',
 u'comprised',
 u'Till',
 u'forwarding',
 u'lightened',
 u'artless',
 u'rugged',
 u'respectability',
 u'renewing',
 u'spraining',
 u'twould',
 u'unconquerable',
 u'pattern',
 u'dispersed',
 u'ELINOR',
 u'whiled',
 u'honours',
 u'Pardon',
 u'protestations',
 u'suspects',
 u'3',
 u'despatching',
 u'prettiest',
 u'emigrant',
 u"'--",
 u'reasonableness',
 u'reluctantly',
 u'comer',
 u'shamefully',
 u'madness',
 u'dispatch',
 u'Eager',
 u'thistles',
 u'muttered',
 u'olives',
 u'external',
 u'countless',
 u'winks',
 u'trick',
 u'bias',
 u'hens',
 u'worry',
 u'northward',
 u'indefatigable',
 u'Supposing',
 u'thunderbolt',
 u'constitutional',
 u'charged',
 u'speed',
 u'politely',
 u'execution',
 u'miracle',
 u'verbal',
 u'zealously',
 u'duration',
 u'capability',
 u'passions',
 u'unlocked',
 u'garret',
 u'carefulness',
 u'tuition',
 u'fondness',
 u'Get',
 u'boldly',
 u'sedulously',
 u'persecution',
 u'Add',
 u".'--",
 u'stare',
 u'forwarded',
 u'start',
 u'cats',
 u'drains',
 u'pitched',
 u'copied',
 u'toned',
 u'intents',
 u'remembrances',
 u'humiliations',
 u'sheath',
 u'Law',
 u'THERE',
 u'endeavors',
 u'bulk',
 u'moonlight',
 u'Dearest',
 u'alleviation',
 u'expatiate',
 u'pique',
 u'bequeath',
 u'referring',
 u'confidential',
 u'souls',
 u'abatement',
 u'-?',
 u'streets',
 u'chuckle',
 u'induce',
 u'witnesses',
 u'Thunderbolts',
 u'apologized',
 u'witticisms',
 u'loose',
 u'answers',
 u'praises',
 u'inspired',
 u'soldier',
 u'Clarke',
 u'attendant',
 u'ash',
 u'injure',
 u'mysterious',
 u'Abundance',
 u'St',
 u'producing',
 u'nine',
 u'spontaneous',
 u'history',
 u'claimed',
 u'weakening',
 u'resettled',
 u'tries',
 u'imaginations',
 u'Cassino',
 u'daggers',
 u'contrives',
 u'dispersing',
 u'dream',
 u'systems',
 u'differed',
 u'friendliest',
 u'forbear',
 u'food',
 u'ye',
 u'atoning',
 u'OCCASION',
 u'Gentleman',
 ...]
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 351
  • 352
  • 353
  • 354
  • 355
  • 356
  • 357
  • 358
  • 359
  • 360
  • 361
  • 362
  • 363
  • 364
  • 365
  • 366
  • 367
  • 368
  • 369
  • 370
  • 371
  • 372
  • 373
  • 374
  • 375
  • 376
  • 377
  • 378
  • 379
  • 380
  • 381
  • 382
  • 383
  • 384
  • 385
  • 386
  • 387
  • 388
  • 389
  • 390
  • 391
  • 392
  • 393
  • 394
  • 395
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • 407
  • 408
  • 409
  • 410
  • 411
  • 412
  • 413
  • 414
  • 415
  • 416
  • 417
  • 418
  • 419
  • 420
  • 421
  • 422
  • 423
  • 424
  • 425
  • 426
  • 427
  • 428
  • 429
  • 430
  • 431
  • 432
  • 433
  • 434
  • 435
  • 436
  • 437
  • 438
  • 439
  • 440
  • 441
  • 442
  • 443
  • 444
  • 445
  • 446
  • 447
  • 448
  • 449
  • 450
  • 451
  • 452
  • 453
  • 454
  • 455
  • 456
  • 457
  • 458
  • 459
  • 460
  • 461
  • 462
  • 463
  • 464
  • 465
  • 466
  • 467
  • 468
  • 469
  • 470
  • 471
  • 472
  • 473
  • 474
  • 475
  • 476
  • 477
  • 478
  • 479
  • 480
  • 481
  • 482
  • 483
  • 484
  • 485
  • 486
  • 487
  • 488
  • 489
  • 490
  • 491
  • 492
  • 493
  • 494
  • 495
  • 496
  • 497
  • 498
  • 499
  • 500
  • 501
  • 502
  • 503
  • 504
  • 505
  • 506
  • 507
  • 508
  • 509
  • 510
  • 511
  • 512
  • 513
  • 514
  • 515
  • 516
  • 517
  • 518
  • 519
  • 520
  • 521
  • 522
  • 523
  • 524
  • 525
  • 526
  • 527
  • 528
  • 529
  • 530
  • 531
  • 532
  • 533
  • 534
  • 535
  • 536
  • 537
  • 538
  • 539
  • 540
  • 541
  • 542
  • 543
  • 544
  • 545
  • 546
  • 547
  • 548
  • 549
  • 550
  • 551
  • 552
  • 553
  • 554
  • 555
  • 556
  • 557
  • 558
  • 559
  • 560
  • 561
  • 562
  • 563
  • 564
  • 565
  • 566
  • 567
  • 568
  • 569
  • 570
  • 571
  • 572
  • 573
  • 574
  • 575
  • 576
  • 577
  • 578
  • 579
  • 580
  • 581
  • 582
  • 583
  • 584
  • 585
  • 586
  • 587
  • 588
  • 589
  • 590
  • 591
  • 592
  • 593
  • 594
  • 595
  • 596
  • 597
  • 598
  • 599
  • 600
  • 601
  • 602
  • 603
  • 604
  • 605
  • 606
  • 607
  • 608
  • 609
  • 610
  • 611
  • 612
  • 613
  • 614
  • 615
  • 616
  • 617
  • 618
  • 619
  • 620
  • 621
  • 622
  • 623
  • 624
  • 625
  • 626
  • 627
  • 628
  • 629
  • 630
  • 631
  • 632
  • 633
  • 634
  • 635
  • 636
  • 637
  • 638
  • 639
  • 640
  • 641
  • 642
  • 643
  • 644
  • 645
  • 646
  • 647
  • 648
  • 649
  • 650
  • 651
  • 652
  • 653
  • 654
  • 655
  • 656
  • 657
  • 658
  • 659
  • 660
  • 661
  • 662
  • 663
  • 664
  • 665
  • 666
  • 667
  • 668
  • 669
  • 670
  • 671
  • 672
  • 673
  • 674
  • 675
  • 676
  • 677
  • 678
  • 679
  • 680
  • 681
  • 682
  • 683
  • 684
  • 685
  • 686
  • 687
  • 688
  • 689
  • 690
  • 691
  • 692
  • 693
  • 694
  • 695
  • 696
  • 697
  • 698
  • 699
  • 700
  • 701
  • 702
  • 703
  • 704
  • 705
  • 706
  • 707
  • 708
  • 709
  • 710
  • 711
  • 712
  • 713
  • 714
  • 715
  • 716
  • 717
  • 718
  • 719
  • 720
  • 721
  • 722
  • 723
  • 724
  • 725
  • 726
  • 727
  • 728
  • 729
  • 730
  • 731
  • 732
  • 733
  • 734
  • 735
  • 736
  • 737
  • 738
  • 739
  • 740
  • 741
  • 742
  • 743
  • 744
  • 745
  • 746
  • 747
  • 748
  • 749
  • 750
  • 751
  • 752
  • 753
  • 754
  • 755
  • 756
  • 757
  • 758
  • 759
  • 760
  • 761
  • 762
  • 763
  • 764
  • 765
  • 766
  • 767
  • 768
  • 769
  • 770
  • 771
  • 772
  • 773
  • 774
  • 775
  • 776
  • 777
  • 778
  • 779
  • 780
  • 781
  • 782
  • 783
  • 784
  • 785
  • 786
  • 787
  • 788
  • 789
  • 790
  • 791
  • 792
  • 793
  • 794
  • 795
  • 796
  • 797
  • 798
  • 799
  • 800
  • 801
  • 802
  • 803
  • 804
  • 805
  • 806
  • 807
  • 808
  • 809
  • 810
  • 811
  • 812
  • 813
  • 814
  • 815
  • 816
  • 817
  • 818
  • 819
  • 820
  • 821
  • 822
  • 823
  • 824
  • 825
  • 826
  • 827
  • 828
  • 829
  • 830
  • 831
  • 832
  • 833
  • 834
  • 835
  • 836
  • 837
  • 838
  • 839
  • 840
  • 841
  • 842
  • 843
  • 844
  • 845
  • 846
  • 847
  • 848
  • 849
  • 850
  • 851
  • 852
  • 853
  • 854
  • 855
  • 856
  • 857
  • 858
  • 859
  • 860
  • 861
  • 862
  • 863
  • 864
  • 865
  • 866
  • 867
  • 868
  • 869
  • 870
  • 871
  • 872
  • 873
  • 874
  • 875
  • 876
  • 877
  • 878
  • 879
  • 880
  • 881
  • 882
  • 883
  • 884
  • 885
  • 886
  • 887
  • 888
  • 889
  • 890
  • 891
  • 892
  • 893
  • 894
  • 895
  • 896
  • 897
  • 898
  • 899
  • 900
  • 901
  • 902
  • 903
  • 904
  • 905
  • 906
  • 907
  • 908
  • 909
  • 910
  • 911
  • 912
  • 913
  • 914
  • 915
  • 916
  • 917
  • 918
  • 919
  • 920
  • 921
  • 922
  • 923
  • 924
  • 925
  • 926
  • 927
  • 928
  • 929
  • 930
  • 931
  • 932
  • 933
  • 934
  • 935
  • 936
  • 937
  • 938
  • 939
  • 940
  • 941
  • 942
  • 943
  • 944
  • 945
  • 946
  • 947
  • 948
  • 949
  • 950
  • 951
  • 952
  • 953
  • 954
  • 955
  • 956
  • 957
  • 958
  • 959
  • 960
  • 961
  • 962
  • 963
  • 964
  • 965
  • 966
  • 967
  • 968
  • 969
  • 970
  • 971
  • 972
  • 973
  • 974
  • 975
  • 976
  • 977
  • 978
  • 979
  • 980
  • 981
  • 982
  • 983
  • 984
  • 985
  • 986
  • 987
  • 988
  • 989
  • 990
  • 991
  • 992
  • 993
  • 994
  • 995
  • 996
  • 997
  • 998
  • 999
  • 1000
  • 1001
  • 1
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号