1、dataframe.apply

  • DataFrame.apply(func, axis=0, broadcast=False, raw=False,reduce=None, args=(), **kwds)

axis=0
默认是处理一列数据

  • 1、这个func函数需要自己实现,函数的传入参数根据axis来定,
  • 2、比如axis = 1,就会把一行数据作为Series的数据 结构传入给自己实现的函数中,
    我们在函数中实现对Series不同属性之间的计算,返回一个结果,
  • 3、apply函数 会自动遍历每一行DataFrame的数据,最后将所有结果组合成一个Series数据结构并返回。
  • 4、apply的返回值就是函数func函数的返回值
import numpy as np
import pandas as pdf = lambda x: x.max() - x.min()df = pd.DataFrame(np.random.randn(4, 3), columns=list('bde'), index=['utah', 'ohio', 'texas', 'oregon'])
print(df)# 默认按列处理数据,最后列标签变为行索引
t1 = df.apply(f)
print(t1)# axis=1表示按行处理数据,返回一个series类型数据,行索引还是不变
t2 = df.apply(f, axis=1)
print(t2)print(list('bde'))
               b         d         e
utah   -1.536470 -0.275776 -0.753388
ohio    1.399516  0.422876  0.709520
texas  -0.368937 -0.743115  0.319832
oregon  1.437989 -1.828255  0.689356
b    2.974459
d    2.251131
e    1.462909
dtype: float64
utah      1.260694
ohio      0.976640
texas     1.062948
oregon    3.266244
dtype: float64
['b', 'd', 'e']

2、jieba.cut

  • def cut(self, sentence, cut_all=False, HMM=True):
    jieba分词主函数,返回generator
    参数:
    - sentence: 待切分文本.
    - cut_all: 切分模式. True 全模式, False 精确模式.
    - HMM: 是否使用隐式马尔科夫.

  • jieba.cut 和 jieba.lcut 接受 3 个参数:

    • 1、需要分词的字符串(unicode 或 UTF-8 字符串、GBK 字符串)
    • 2、cut_all 参数:是否使用全模式,默认值为 False
    • 3、HMM 参数:用来控制是否使用 HMM 模型,默认值为 True
# 导入 jieba
import jieba
import jieba.posseg as pseg #词性标注
import jieba.analyse as anls #关键词提取# 全模式
seg_list = jieba.cut("他来到上海交通大学", cut_all=True)
print("【全模式】:" + "/ ".join(seg_list))
print(type(seg_list))# 精确模式
# 返回的是生成器
seg_list1 = jieba.cut("他来到上海交通大学", cut_all=False)
print("【精确模式】:" + "/ ".join(seg_list1))
print(type(seg_list1))# 返回的是列表
seg_list2 = jieba.lcut("他来到上海交通大学", cut_all=True)
print("【返回列表】:{0}".format(seg_list2))
print(type(seg_list2))
Building prefix dict from the default dictionary ...
Loading model from cache C:\Users\xgxg\AppData\Local\Temp\jieba.cache
Loading model cost 0.664 seconds.
Prefix dict has been built successfully.【全模式】:他/ 来到/ 上海/ 上海交通大学/ 交通/ 大学
<class 'generator'>
【精确模式】:他/ 来到/ 上海交通大学
<class 'generator'>
【返回列表】:['他', '来到', '上海', '上海交通大学', '交通', '大学']
<class 'list'>

3、collections.defaultdict

  • class collections.defaultdict([default_factory[, …]])

  • defaultdict类返回一个类似于的字典对象,第一个参数给default_factory属性赋值,其它的参数都传递给dict构造器。

  • 通俗来说就是defaultdict类的初始化函数接收一个类型作为参数,当访问的键不存在,实例化一个值作为默认值。

from collections import defaultdictdict1 = defaultdict(int)
dict2 = defaultdict(set)
dict3 = defaultdict(str)
dict4 = defaultdict(list)
dict1[2] ='two'print(dict1[1])
print(dict2[1])
print(dict3[1])
print(dict4[1])
0
set()[]

4、enumerate

4.1、enumerate介绍

  • enumerate(iterable, start=0)

  • Return an enumerate object. iterable must be a sequence, an iterator, or some other object which supports iteration. The next() method of the iterator returned by enumerate() returns a tuple containing a count (from start which defaults to 0) and the values obtained from iterating over iterable.

  • enumerate是枚举的意思,顾名思义,enumerate()函数用来将一个可迭代序列生成一个enumerate对象,该enumerate对象的每个元素是由可迭代对象的索引编号和对应的元素组成的元组

s='hello's1 = enumerate(s)
print(s1)
print(type(s1))for i in s1:print(i)
<enumerate object at 0x00000211E1BFF3F0>
<class 'enumerate'>
(0, 'h')
(1, 'e')
(2, 'l')
(3, 'l')
(4, 'o')

4.2、enumerate应用

  • 当需要遍历一个对象,并为每个元素指定一个编号时,用enumerate生成元祖序列
    然后解包遍历一下就实现了
  • 默认的,索引编号从0开始,但是多数时候可能想要从1开始。enumerate函数提供了可选参数,用start就可以指定开始编号了
s2 = enumerate(s,start=1)for i in s2:print(i)
(1, 'h')
(2, 'e')
(3, 'l')
(4, 'l')
(5, 'o')

5、torch.utils.data

torch.utils.data官方手册

  • torch.utils.data主要包括以下三个类:

    • class torch.utils.data.Dataset
    • class torch.utils.data.sampler.Sampler(data_source)
    • class torch.utils.data.DataLoader(dataset, batch_size=1, shuffle=False, sampler=None, batch_sampler=None, num_workers=0, collate_fn=, pin_memory=False, drop_last=False, timeout=0, worker_init_fn=None)
  • 主要介绍class torch.utils.data.DataLoader和class torch.utils.data.Dataset

  • class torch.utils.data.Dataset

    • 按行索引进行打包张量数据,把张量数据和对应的张量标签进行打包,然后把数据送入到DataLoader
  • class torch.utils.data.DataLoader

    • 负责对Dataset打包好的数据进行分批次,便于进行batch循环和模型的训练

DataLoader源代码

  • class torch.utils.data.DataLoader

    • dataset (Dataset): 加载数据的数据集
    • batch_size (int, optional): 每批加载多少个样本
    • shuffle (bool, optional): 设置为“真”时,在每个epoch对数据打乱.(默认:False)
    • sampler (Sampler, optional): 定义从数据集中提取样本的策略,返回一个样本
    • batch_sampler (Sampler, optional): like sampler, but returns a batch of indices at a time 返回一批样本. 与atch_size, shuffle, sampler和 drop_last互斥.
    • num_workers (int, optional): 用于加载数据的子进程数。0表示数据将在主进程中加载​​。(默认:0)
    • collate_fn (callable, optional): 合并样本列表以形成一个 mini-batch. # callable可调用对象
    • pin_memory (bool, optional): 如果为 True, 数据加载器会将张量复制到 CUDA 固定内存中,然后再返回它们.
    • drop_last (bool, optional): 设定为 True 如果数据集大小不能被批量大小整除的时候, 将丢掉最后一个不完整的batch,(默认:False).
    • timeout (numeric, optional): 如果为正值,则为从工作人员收集批次的超时值。应始终是非负的。(默认:0)
    • worker_init_fn (callable, optional): If not None, this will be called on each worker subprocess with the worker id (an int in [0, num_workers - 1]) as input, after seeding and before data loading. (default: None).
  • class torch.utils.data.Dataset

    • 作用: (1) 创建数据集,有__getitem__(self, index)函数来根据索引序号获取样本数据和标签, 有__len__(self)函数来获取数据集的长度.
class TensorDataset(Dataset):"""Dataset wrapping data and target tensors.Each sample will be retrieved by indexing both tensors along the firstdimension.Arguments:data_tensor (Tensor): contains sample data.target_tensor (Tensor): contains sample targets (labels)."""def __init__(self, data_tensor, target_tensor):assert data_tensor.size(0) == target_tensor.size(0)self.data_tensor = data_tensorself.target_tensor = target_tensordef __getitem__(self, index):return self.data_tensor[index], self.target_tensor[index]def __len__(self):return self.data_tensor.size(0)
from torch.utils.data import TensorDataset
import torch
from torch.utils.data import DataLoadera = torch.tensor([[1, 2, 3], [4, 5, 6], [7, 8, 9], [1, 2, 3], [4, 5, 6], [7, 8, 9], [1, 2, 3], [4, 5, 6], [7, 8, 9], [1, 2, 3], [4, 5, 6], [7, 8, 9]])
b = torch.tensor([44, 55, 66, 44, 55, 66, 44, 55, 66, 44, 55, 66])# 按行索引进行打包张量数据,把数据和对应的标签进行打包,然后把数据送入到DataLoader
train_ids = TensorDataset(a, b)
print(type(train_ids))
# 切片输出,train_ids切片得到的是元组,可以同时取出两列元素
print(train_ids[0:2])
print('=' * 80)# 循环取数据
for x_train, y_label in train_ids:print(x_train, y_label)
<class 'torch.utils.data.dataset.TensorDataset'>
(tensor([[1, 2, 3],[4, 5, 6]]), tensor([44, 55]))
================================================================================
tensor([1, 2, 3]) tensor(44)
tensor([4, 5, 6]) tensor(55)
tensor([7, 8, 9]) tensor(66)
tensor([1, 2, 3]) tensor(44)
tensor([4, 5, 6]) tensor(55)
tensor([7, 8, 9]) tensor(66)
tensor([1, 2, 3]) tensor(44)
tensor([4, 5, 6]) tensor(55)
tensor([7, 8, 9]) tensor(66)
tensor([1, 2, 3]) tensor(44)
tensor([4, 5, 6]) tensor(55)
tensor([7, 8, 9]) tensor(66)
# DataLoader进行数据封装
# 经过DataLoader之后,返回一个可迭代对象,进而可以用for遍历,批量载入数据
train_loader = DataLoader(dataset=train_ids, batch_size=4, shuffle=True)print("train_loader is:",train_loader)
print(type(train_loader))
print('=' * 80)# enumerate会返回一个元组,data是一个列表,由2列元素,第1列是数据,第2列是数据所对应的标签
for i, data in enumerate(train_loader, 1):  # 注意enumerate返回值有两个,一个是batch批次的序号,一个是数据(包含训练数据和标签)print("data is:",data)x_data, label = dataprint(' batch:{0} x_data:{1}  label: {2}'.format(i, x_data, label))
train_loader is: <torch.utils.data.dataloader.DataLoader object at 0x00000211E5B19F28>
<class 'torch.utils.data.dataloader.DataLoader'>
================================================================================
data is: [tensor([[1, 2, 3],[7, 8, 9],[1, 2, 3],[4, 5, 6]]), tensor([44, 66, 44, 55])]batch:1 x_data:tensor([[1, 2, 3],[7, 8, 9],[1, 2, 3],[4, 5, 6]])  label: tensor([44, 66, 44, 55])
data is: [tensor([[7, 8, 9],[4, 5, 6],[7, 8, 9],[4, 5, 6]]), tensor([66, 55, 66, 55])]batch:2 x_data:tensor([[7, 8, 9],[4, 5, 6],[7, 8, 9],[4, 5, 6]])  label: tensor([66, 55, 66, 55])
data is: [tensor([[7, 8, 9],[1, 2, 3],[4, 5, 6],[1, 2, 3]]), tensor([66, 44, 55, 44])]batch:3 x_data:tensor([[7, 8, 9],[1, 2, 3],[4, 5, 6],[1, 2, 3]])  label: tensor([66, 44, 55, 44])
a1 = [1,2]
b1,b2 = a1
print(b1)
print(b2)
1
2

6、sorted

6.1、sorted介绍

  • Both list.sort() and sorted() have a key parameter to specify a function (or other callable) to be called on each list element prior to making comparisons.
  • list.sort()和sorted()都有一个关键参数,用于指定在进行比较之前在每个列表元素上要调用的函数(或其他可调用函数)
  • 在比较之前,对于sorted中的key参数的使用,就是先将列表的每个元素单独取出来并且作用于指定的key函数操作,然后把操作后的结果进行比较

y1 = "This is a test string from Andrew".split()
print(y1)# key=str.lower,先对列表中的每一个字符串变为小写,然后再按首字母进行升序排列
x1 = sorted(y1, key=str.lower)
print(x1)
['This', 'is', 'a', 'test', 'string', 'from', 'Andrew']
['a', 'Andrew', 'from', 'is', 'string', 'test', 'This']

a  = [2, 3, 5, 4, 22, 45, 99, 16]
# 先对列表的每个元素进行计算,然后比较结果大小,按升序排列
b = sorted(a, key=lambda x: x*x-8*x+16)
print(b)
#结果:[4, 3, 5, 2, 16, 22, 45, 99],这里的函数在x=4时取最小值。students = [('john', 'A', 15), ('jane', 'B', 12),('dave', 'B', 10)]
print(students[2][1])
[4, 3, 5, 2, 16, 22, 45, 99]
B

6.2、sorted应用

  • sorted(list1, key=lambda x: x[1], reverse=False)
  • 对于key=lambda x: x[1]的理解,将list1中每个元素单独取出来,比如(‘the’, 136)这个元素,把这个元素(元组)当成x,使用x[1]就取出了136
  • 依次类推,对每个元素都这样操作,将所得到的结果进行排序
list1 = [('the', 136), ('and', 111), ('of', 82), ('to', 71), ('our', 68), ('we', 59), ('that', 49), ('a', 46), ('is', 36), ('in', 26), ('this', 24), ('for', 23), ('are', 22), ('but', 20)]
print(list1)
print('=' * 80)word_sort = sorted(list1, key=lambda x: x[1], reverse=False)  # 根据词频降序排序
print(word_sort)
[('the', 136), ('and', 111), ('of', 82), ('to', 71), ('our', 68), ('we', 59), ('that', 49), ('a', 46), ('is', 36), ('in', 26), ('this', 24), ('for', 23), ('are', 22), ('but', 20)]
================================================================================
[('but', 20), ('are', 22), ('for', 23), ('this', 24), ('in', 26), ('is', 36), ('a', 46), ('that', 49), ('we', 59), ('our', 68), ('to', 71), ('of', 82), ('and', 111), ('the', 136)]

7、词频统计实战


import time
from collections import defaultdict, Counter
from jieba import analyse
from functools import wraps
import pandas as pd
from nltk import FreqDisttext = """My fellow citizens: I stand here today humbled by the task before us, grateful for the trust you've bestowed, mindful of the sacrifices borne by our ancestors.
I thank President Bush for his service to our nation -- (applause) -- as well as the generosity and cooperation he has shown throughout this transition.
Forty-four Americans have now taken the presidential oath. The words have been spoken during rising tides of prosperity and the still waters of peace. Yet, every so often, the oath is taken amidst gathering clouds and raging storms. At these moments, America has carried on not simply because of the skill or vision of those in high office, but because we, the people, have remained faithful to the ideals of our forebears and true to our founding documents.
So it has been; so it must be with this generation of Americans.
That we are in the midst of crisis is now well+++ understood. Our nation is at war against a far-reaching network of violence and hatred. Our economy is badly weakened, a consequence of greed and irresponsibility on the part of some, but also our collective failure to make hard choices and prepare the nation for a new age. Homes have been lost, jobs shed, businesses shuttered. Our health care is too costly, our schools fail too many -- and each day brings further evidence that the ways we use energy strengthen our adversaries and threaten our planet.
These are the indicators of crisis, subject to data and statistics. Less measurable, but no less profound, is a sapping of confidence across our land; a nagging fear that America's decline is inevitable, that the next generation must lower its sights.
Today I say to you that the challenges we face are real. They are serious and they are many. They will not be met easily or in a short span of time. But know this America: They will be met. (Applause.)
On this day, we gather because we have chosen hope over fear, unity of purpose over conflict and discord. On this day, we come to proclaim an end to the petty grievances and false promises, the recriminations and worn-out dogmas that for far too long have strangled our politics. We remain a young nation. But in the words of Scripture, the time has come to set aside childish things. The time has come to reaffirm our enduring spirit; to choose our better history; to carry forward that precious gift, that noble idea passed on from generation to generation: the God-given promise that all are equal, all are free, and all deserve a chance to pursue their full measure of happiness. (Applause.)
In reaffirming the greatness of our nation we understand that greatness is never a given. It must be earned. Our journey has never been one of short-cuts or settling for less. It has not been the path for the faint-hearted, for those that prefer leisure over work, or seek only the pleasures of riches and fame. Rather, it has been the risk-takers, the doers, the makers of things -- some celebrated, but more often men and women obscure in their labor -- who have carried us up the long rugged path towards prosperity and freedom.
For us, they packed up their few worldly possessions and traveled across oceans in search of a new life. For us, they toiled in sweatshops, and settled the West, endured the lash of the whip, and plowed the hard earth. For us, they fought and died in places like Concord and Gettysburg, Normandy and Khe Sahn.
Time and again these men and women struggled and sacrificed and worked till their hands were raw so that we might live a better life. They saw America as bigger than the sum of our individual ambitions, greater than all the differences of birth or wealth or faction.
This is the journey we continue today. We remain the most prosperous, powerful nation on Earth. Our workers are no less productive than when this crisis began. Our minds are no less inventive, our goods and services no less needed than they were last week, or last month, or last year. Our capacity remains undiminished. But our time of standing pat, of protecting narrow interests and putting off unpleasant decisions -- that time has surely passed. Starting today, we must pick ourselves up, dust ourselves off, and begin again the work of remaking America. (Applause.)
For everywhere we look, there is work to be done. The state of our economy calls for action, bold and swift. And we will act, not only to create new jobs, but to lay a new foundation for growth. We will build the roads and bridges, the electric grids and digital lines that feed our commerce and bind us together. We'll restore science to its rightful place, and wield technology's wonders to raise health care's quality and lower its cost. We will harness the sun and the winds and the soil to fuel our cars and run our factories. And we will transform our schools and colleges and universities to meet the demands of a new age. All this we can do. All this we will do.
Now, there are some who question the scale of our ambitions, who suggest that our system cannot tolerate too many big plans. Their memories are short, for they have forgotten what this country has already done, what free men and women can achieve when imagination is joined to common purpose, and necessity to courage. What the cynics fail to understand is that the ground has shifted beneath them, that the stale political arguments that have consumed us for so long no longer apply.
The question we ask today is not whether our government is too big or too small, but whether it works -- whether it helps families find jobs at a decent wage, care they can afford, a retirement that is dignified. Where the answer is yes, we intend to move forward. Where the answer is no, programs will end. And those of us who manage the public's dollars will be held to account, to spend wisely, reform bad habits, and do our business in the light of day, because only then can we restore the vital trust between a people and their government.
Nor is the question before us whether the market is a force for good or ill. Its power to generate wealth and expand freedom is unmatched. But this crisis has reminded us that without a watchful eye, the market can spin out of control. The nation cannot prosper long when it favors only the prosperous. The success of our economy has always depended not just on the size of our gross domestic product, but on the reach of our prosperity, on the ability to extend opportunity to every willing heart -- not out of charity, but because it is the surest route to our common good. (Applause.)
As for our common defense, we reject as false the choice between our safety and our ideals. Our Founding Fathers -- (applause) -- our Founding Fathers, faced with perils that we can scarcely imagine, drafted a charter to assure the rule of law and the rights of man -- a charter expanded by the blood of generations. Those ideals still light the world, and we will not give them up for expedience sake. (Applause.)
And so, to all the other peoples and governments who are watching today, from the grandest capitals to the small village where my father was born, know that America is a friend of each nation, and every man, woman and child who seeks a future of peace and dignity. And we are ready to lead once more. (Applause.)
Recall that earlier generations faced down fascism and communism not just with missiles and tanks, but with the sturdy alliances and enduring convictions. They understood that our power alone cannot protect us, nor does it entitle us to do as we please. Instead they knew that our power grows through its prudent use; our security emanates from the justness of our cause, the force of our example, the tempering qualities of humility and restraint.
We are the keepers of this legacy. Guided by these principles once more we can meet those new threats that demand even greater effort, even greater cooperation and understanding between nations. We will begin to responsibly leave Iraq to its people and forge a hard-earned peace in Afghanistan. With old friends and former foes, we'll work tirelessly to lessen the nuclear threat, and roll back the specter of a warming planet.
We will not apologize for our way of life, nor will we waver in its defense. And for those who seek to advance their aims by inducing terror and slaughtering innocents, we say to you now that our spirit is stronger and cannot be broken -- you cannot outlast us, and we will defeat you. (Applause.)
For we know that our patchwork heritage is a strength, not a weakness. We are a nation of Christians and Muslims, Jews and Hindus, and non-believers. We are shaped by every language and culture, drawn from every end of this Earth; and because we have tasted the bitter swill of civil war and segregation, and emerged from that dark chapter stronger and more united, we cannot help but believe that the old hatreds shall someday pass; that the lines of tribe shall soon dissolve; that as the world grows smaller, our common humanity shall reveal itself; and that America must play its role in ushering in a new era of peace.
To the Muslim world, we seek a new way forward, based on mutual interest and mutual respect. To those leaders around the globe who seek to sow conflict, or blame their society's ills on the West, know that your people will judge you on what you can build, not what you destroy. (Applause.)
To those who cling to power through corruption and deceit and the silencing of dissent, know that you are on the wrong side of history, but that we will extend a hand if you are willing to unclench your fist. (Applause.)
To the people of poor nations, we pledge to work alongside you to make your farms flourish and let clean waters flow; to nourish starved bodies and feed hungry minds. And to those nations like ours that enjoy relative plenty, we say we can no longer afford indifference to the suffering outside our borders, nor can we consume the world's resources without regard to effect. For the world has changed, and we must change with it.
As we consider the role that unfolds before us, we remember with humble gratitude those brave Americans who at this very hour patrol far-off deserts and distant mountains. They have something to tell us, just as the fallen heroes who lie in Arlington whisper through the ages.
We honor them not only because they are the guardians of our liberty, but because they embody the spirit of service -- a willingness to find meaning in something greater than themselves.
And yet at this moment, a moment that will define a generation, it is precisely this spirit that must inhabit us all. For as much as government can do, and must do, it is ultimately the faith and determination of the American people upon which this nation relies. It is the kindness to take in a stranger when the levees break, the selflessness of workers who would rather cut their hours than see a friend lose their job which sees us through our darkest hours. It is the firefighter's courage to storm a stairway filled with smoke, but also a parent's willingness to nurture a child that finally decides our fate.
Our challenges may be new. The instruments with which we meet them may be new. But those values upon which our success depends -- honesty and hard work, courage and fair play, tolerance and curiosity, loyalty and patriotism -- these things are old. These things are true. They have been the quiet force of progress throughout our history.
What is demanded, then, is a return to these truths. What is required of us now is a new era of responsibility -- a recognition on the part of every American that we have duties to ourselves, our nation and the world; duties that we do not grudgingly accept, but rather seize gladly, firm in the knowledge that there is nothing so satisfying to the spirit, so defining of our character than giving our all to a difficult task.
This is the price and the promise of citizenship. This is the source of our confidence -- the knowledge that God calls on us to shape an uncertain destiny. This is the meaning of our liberty and our creed, why men and women and children of every race and every faith can join in celebration across this magnificent mall; and why a man whose father less than 60 years ago might not have been served in a local restaurant can now stand before you to take a most sacred oath. (Applause.)
So let us mark this day with remembrance of who we are and how far we have traveled. In the year of America's birth, in the coldest of months, a small band of patriots huddled by dying campfires on the shores of an icy river. The capital was abandoned. The enemy was advancing. The snow was stained with blood. At the moment when the outcome of our revolution was most in doubt, the father of our nation ordered these words to be read to the people:
"Let it be told to the future world...that in the depth of winter, when nothing but hope and virtue could survive... that the city and the country, alarmed at one common danger, came forth to meet [it]."
America: In the face of our common dangers, in this winter of our hardship, let us remember these timeless words. With hope and virtue, let us brave once more the icy currents, and endure what storms may come. Let it be said by our children's children that when we were tested we refused to let this journey end, that we did not turn back nor did we falter; and with eyes fixed on the horizon and God's grace upon us, we carried forth that great gift of freedom and delivered it safely to future generations.
Thank you. God bless you. And God bless the United States of America. (Applause.)"""def timeit(func):@wraps(func)def wrap(*args, **kwargs):start = time.time()result = func(*args, **kwargs)print(func.__name__, time.time() - start)return resultreturn wrap@timeit
def func_dict(word_list):"""方法一:使用字典:param word_list::return:"""count_dict = {}for item in word_list:count_dict[item] = count_dict[item] + 1 if item in count_dict else 1return sorted(count_dict.items(), key=lambda x: x[1], reverse=True)@timeit
def func_defaultdict(word_list):"""方式二:使用defaultdict:param word_list::return:"""count_dict = defaultdict(lambda: 0)for item in word_list:count_dict[item] += 1return sorted(count_dict.items(), key=lambda x: x[1], reverse=True)@timeit
def func_counter(word_list):"""方法三:使用Counter:param word_list::return:"""count_result = Counter(word_list)# print(count_result)   # 一个字典对象# print(count_result.keys())   # 一个字典key值# print(count_result.values())   # 一个字典value值# print(list(count_result.elements()))  # 返回的是 word_list# print(count_result.most_common(3))return count_result@timeit
def func_pd(words):"""方式四:使用pandas的value_counts:param words::return:"""count_result = pd.Series(words).value_counts()return count_result.to_dict()@timeit
def func_nltk(wordlist, fmt='dict'):"""方式五:使用nltk的FreqDist:param wordlist::return:"""count_result = FreqDist(samples=wordlist)return dict(count_result.most_common()) if fmt == 'dict' else count_result.most_common()def func_jieba():"""jieba分词统计词语重要性:return:"""with open("origin_data/weibo.txt", 'r') as f:texts = f.read()  # 读取整个文件作为一个字符串result = analyse.textrank(texts, withWeight=True)  # textrank算法排序# result = analyse.extract_tags(sentence=texts, withWeight=True)  # tfidf考虑权重print(result)def gen_data():return text.lower().split()if __name__ == '__main__':word_list = gen_data()result = func_dict(word_list)result1 = func_defaultdict(word_list)result2 = func_counter(word_list)result3 = func_pd(word_list)result4 = func_nltk(word_list)print(result)print(result1)print(result2)print(result3)print(result4)# func_jieba() 
func_dict 0.0009968280792236328
func_defaultdict 0.0
func_counter 0.000997781753540039
func_pd 0.0049860477447509766
func_nltk 0.0019941329956054688
[('the', 136), ('and', 111), ('of', 82), ('to', 71), ('our', 68), ('we', 59), ('that', 49), ('a', 46), ('is', 36), ('in', 26), ('this', 24), ('for', 23), ('are', 22), ('but', 20), ('--', 17), ('on', 17), ('it', 17), ('they', 17), ('will', 17), ('not', 16), ('have', 15), ('has', 14), ('us', 14), ('with', 13), ('who', 13), ('can', 13), ('be', 12), ('as', 11), ('or', 11), ('those', 11), ('(applause.)', 11), ('nation', 10), ('you', 10), ('their', 10), ('us,', 9), ('these', 9), ('new', 9), ('by', 8), ('every', 8), ('so', 8), ('because', 8), ('must', 8), ('its', 8), ('all', 8), ('than', 8), ('what', 8), ('been', 7), ('at', 7), ('when', 7), ('too', 6), ('less', 6), ('no', 6), ('cannot', 6), ('common', 6), ('let', 6), ('now', 5), ('know', 5), ('time', 5), ('from', 5), ('only', 5), ('people', 5), ('nor', 5), ('was', 5), ('before', 4), ('america', 4), ('long', 4), ('seek', 4), ('more', 4), ('men', 4), ('women', 4), ('greater', 4), ('work', 4), ('meet', 4), ('whether', 4), ('power', 4), ('through', 4), ('which', 4), ('i', 3), ('today', 3), ('words', 3), ('carried', 3), ('founding', 3), ('generation', 3), ('crisis', 3), ('economy', 3), ('hard', 3), ('across', 3), ('say', 3), ('day,', 3), ('hope', 3), ('over', 3), ('come', 3), ('an', 3), ('journey', 3), ('things', 3), ('up', 3), ('were', 3), ('most', 3), ('last', 3), ('there', 3), ('question', 3), ('where', 3), ('do', 3), ('between', 3), ('force', 3), ('just', 3), ('them', 3), ('father', 3), ('future', 3), ('once', 3), ('spirit', 3), ('you.', 3), ('shall', 3), ('your', 3), ('upon', 3), ('may', 3), ('god', 3), ('my', 2), ('stand', 2), ('trust', 2), ('thank', 2), ('service', 2), ('(applause)', 2), ('cooperation', 2), ('throughout', 2), ('americans', 2), ('taken', 2), ('oath.', 2), ('prosperity', 2), ('still', 2), ('waters', 2), ('peace.', 2), ('ideals', 2), ('war', 2), ('part', 2), ('also', 2), ('make', 2), ('age.', 2), ('jobs', 2), ('health', 2), ('care', 2), ('schools', 2), ('fail', 2), ('many', 2), ('each', 2), ('day', 2), ('planet.', 2), ('confidence', 2), ("america's", 2), ('lower', 2), ('challenges', 2), ('face', 2), ('america:', 2), ('end', 2), ('false', 2), ('far', 2), ('remain', 2), ('enduring', 2), ('better', 2), ('promise', 2), ('greatness', 2), ('understand', 2), ('never', 2), ('one', 2), ('path', 2), ('work,', 2), ('some', 2), ('life.', 2), ('west,', 2), ('earth.', 2), ('like', 2), ('again', 2), ('might', 2), ('ambitions,', 2), ('wealth', 2), ('workers', 2), ('today,', 2), ('ourselves', 2), ('begin', 2), ('america.', 2), ('calls', 2), ('lines', 2), ('feed', 2), ("we'll", 2), ('restore', 2), ('do.', 2), ('big', 2), ('longer', 2), ('government', 2), ('find', 2), ('answer', 2), ('light', 2), ('market', 2), ('freedom', 2), ('without', 2), ('out', 2), ('success', 2), ('extend', 2), ('willing', 2), ('faced', 2), ('charter', 2), ('man', 2), ('generations.', 2), ('world,', 2), ('small', 2), ('friend', 2), ('child', 2), ('peace', 2), ('grows', 2), ('even', 2), ('old', 2), ('back', 2), ('way', 2), ('stronger', 2), ('world', 2), ('role', 2), ('era', 2), ('mutual', 2), ('remember', 2), ('brave', 2), ('something', 2), ('willingness', 2), ('meaning', 2), ('moment', 2), ('do,', 2), ('faith', 2), ('american', 2), ('take', 2), ('rather', 2), ('courage', 2), ('new.', 2), ('duties', 2), ('knowledge', 2), ('nothing', 2), ('why', 2), ('children', 2), ('icy', 2), ('forth', 2), ('did', 2), ('bless', 2), ('fellow', 1), ('citizens:', 1), ('here', 1), ('humbled', 1), ('task', 1), ('grateful', 1), ("you've", 1), ('bestowed,', 1), ('mindful', 1), ('sacrifices', 1), ('borne', 1), ('ancestors.', 1), ('president', 1), ('bush', 1), ('his', 1), ('well', 1), ('generosity', 1), ('he', 1), ('shown', 1), ('transition.', 1), ('forty-four', 1), ('presidential', 1), ('spoken', 1), ('during', 1), ('rising', 1), ('tides', 1), ('yet,', 1), ('often,', 1), ('oath', 1), ('amidst', 1), ('gathering', 1), ('clouds', 1), ('raging', 1), ('storms.', 1), ('moments,', 1), ('simply', 1), ('skill', 1), ('vision', 1), ('high', 1), ('office,', 1), ('we,', 1), ('people,', 1), ('remained', 1), ('faithful', 1), ('forebears', 1), ('true', 1), ('documents.', 1), ('been;', 1), ('americans.', 1), ('midst', 1), ('well+++', 1), ('understood.', 1), ('against', 1), ('far-reaching', 1), ('network', 1), ('violence', 1), ('hatred.', 1), ('badly', 1), ('weakened,', 1), ('consequence', 1), ('greed', 1), ('irresponsibility', 1), ('some,', 1), ('collective', 1), ('failure', 1), ('choices', 1), ('prepare', 1), ('homes', 1), ('lost,', 1), ('shed,', 1), ('businesses', 1), ('shuttered.', 1), ('costly,', 1), ('brings', 1), ('further', 1), ('evidence', 1), ('ways', 1), ('use', 1), ('energy', 1), ('strengthen', 1), ('adversaries', 1), ('threaten', 1), ('indicators', 1), ('crisis,', 1), ('subject', 1), ('data', 1), ('statistics.', 1), ('measurable,', 1), ('profound,', 1), ('sapping', 1), ('land;', 1), ('nagging', 1), ('fear', 1), ('decline', 1), ('inevitable,', 1), ('next', 1), ('sights.', 1), ('real.', 1), ('serious', 1), ('many.', 1), ('met', 1), ('easily', 1), ('short', 1), ('span', 1), ('time.', 1), ('met.', 1), ('gather', 1), ('chosen', 1), ('fear,', 1), ('unity', 1), ('purpose', 1), ('conflict', 1), ('discord.', 1), ('proclaim', 1), ('petty', 1), ('grievances', 1), ('promises,', 1), ('recriminations', 1), ('worn-out', 1), ('dogmas', 1), ('strangled', 1), ('politics.', 1), ('young', 1), ('nation.', 1), ('scripture,', 1), ('set', 1), ('aside', 1), ('childish', 1), ('things.', 1), ('reaffirm', 1), ('spirit;', 1), ('choose', 1), ('history;', 1), ('carry', 1), ('forward', 1), ('precious', 1), ('gift,', 1), ('noble', 1), ('idea', 1), ('passed', 1), ('generation:', 1), ('god-given', 1), ('equal,', 1), ('free,', 1), ('deserve', 1), ('chance', 1), ('pursue', 1), ('full', 1), ('measure', 1), ('happiness.', 1), ('reaffirming', 1), ('given.', 1), ('earned.', 1), ('short-cuts', 1), ('settling', 1), ('less.', 1), ('faint-hearted,', 1), ('prefer', 1), ('leisure', 1), ('pleasures', 1), ('riches', 1), ('fame.', 1), ('rather,', 1), ('risk-takers,', 1), ('doers,', 1), ('makers', 1), ('celebrated,', 1), ('often', 1), ('obscure', 1), ('labor', 1), ('rugged', 1), ('towards', 1), ('freedom.', 1), ('packed', 1), ('few', 1), ('worldly', 1), ('possessions', 1), ('traveled', 1), ('oceans', 1), ('search', 1), ('toiled', 1), ('sweatshops,', 1), ('settled', 1), ('endured', 1), ('lash', 1), ('whip,', 1), ('plowed', 1), ('fought', 1), ('died', 1), ('places', 1), ('concord', 1), ('gettysburg,', 1), ('normandy', 1), ('khe', 1), ('sahn.', 1), ('struggled', 1), ('sacrificed', 1), ('worked', 1), ('till', 1), ('hands', 1), ('raw', 1), ('live', 1), ('saw', 1), ('bigger', 1), ('sum', 1), ('individual', 1), ('differences', 1), ('birth', 1), ('faction.', 1), ('continue', 1), ('today.', 1), ('prosperous,', 1), ('powerful', 1), ('productive', 1), ('began.', 1), ('minds', 1), ('inventive,', 1), ('goods', 1), ('services', 1), ('needed', 1), ('week,', 1), ('month,', 1), ('year.', 1), ('capacity', 1), ('remains', 1), ('undiminished.', 1), ('standing', 1), ('pat,', 1), ('protecting', 1), ('narrow', 1), ('interests', 1), ('putting', 1), ('off', 1), ('unpleasant', 1), ('decisions', 1), ('surely', 1), ('passed.', 1), ('starting', 1), ('pick', 1), ('up,', 1), ('dust', 1), ('off,', 1), ('remaking', 1), ('everywhere', 1), ('look,', 1), ('done.', 1), ('state', 1), ('action,', 1), ('bold', 1), ('swift.', 1), ('act,', 1), ('create', 1), ('jobs,', 1), ('lay', 1), ('foundation', 1), ('growth.', 1), ('build', 1), ('roads', 1), ('bridges,', 1), ('electric', 1), ('grids', 1), ('digital', 1), ('commerce', 1), ('bind', 1), ('together.', 1), ('science', 1), ('rightful', 1), ('place,', 1), ('wield', 1), ("technology's", 1), ('wonders', 1), ('raise', 1), ("care's", 1), ('quality', 1), ('cost.', 1), ('harness', 1), ('sun', 1), ('winds', 1), ('soil', 1), ('fuel', 1), ('cars', 1), ('run', 1), ('factories.', 1), ('transform', 1), ('colleges', 1), ('universities', 1), ('demands', 1), ('now,', 1), ('scale', 1), ('suggest', 1), ('system', 1), ('tolerate', 1), ('plans.', 1), ('memories', 1), ('short,', 1), ('forgotten', 1), ('country', 1), ('already', 1), ('done,', 1), ('free', 1), ('achieve', 1), ('imagination', 1), ('joined', 1), ('purpose,', 1), ('necessity', 1), ('courage.', 1), ('cynics', 1), ('ground', 1), ('shifted', 1), ('beneath', 1), ('them,', 1), ('stale', 1), ('political', 1), ('arguments', 1), ('consumed', 1), ('apply.', 1), ('ask', 1), ('small,', 1), ('works', 1), ('helps', 1), ('families', 1), ('decent', 1), ('wage,', 1), ('afford,', 1), ('retirement', 1), ('dignified.', 1), ('yes,', 1), ('intend', 1), ('move', 1), ('forward.', 1), ('no,', 1), ('programs', 1), ('end.', 1), ('manage', 1), ("public's", 1), ('dollars', 1), ('held', 1), ('account,', 1), ('spend', 1), ('wisely,', 1), ('reform', 1), ('bad', 1), ('habits,', 1), ('business', 1), ('then', 1), ('vital', 1), ('government.', 1), ('good', 1), ('ill.', 1), ('generate', 1), ('expand', 1), ('unmatched.', 1), ('reminded', 1), ('watchful', 1), ('eye,', 1), ('spin', 1), ('control.', 1), ('prosper', 1), ('favors', 1), ('prosperous.', 1), ('always', 1), ('depended', 1), ('size', 1), ('gross', 1), ('domestic', 1), ('product,', 1), ('reach', 1), ('prosperity,', 1), ('ability', 1), ('opportunity', 1), ('heart', 1), ('charity,', 1), ('surest', 1), ('route', 1), ('good.', 1), ('defense,', 1), ('reject', 1), ('choice', 1), ('safety', 1), ('ideals.', 1), ('fathers', 1), ('fathers,', 1), ('perils', 1), ('scarcely', 1), ('imagine,', 1), ('drafted', 1), ('assure', 1), ('rule', 1), ('law', 1), ('rights', 1), ('expanded', 1), ('blood', 1), ('give', 1), ('expedience', 1), ('sake.', 1), ('so,', 1), ('other', 1), ('peoples', 1), ('governments', 1), ('watching', 1), ('grandest', 1), ('capitals', 1), ('village', 1), ('born,', 1), ('nation,', 1), ('man,', 1), ('woman', 1), ('seeks', 1), ('dignity.', 1), ('ready', 1), ('lead', 1), ('more.', 1), ('recall', 1), ('earlier', 1), ('generations', 1), ('down', 1), ('fascism', 1), ('communism', 1), ('missiles', 1), ('tanks,', 1), ('sturdy', 1), ('alliances', 1), ('convictions.', 1), ('understood', 1), ('alone', 1), ('protect', 1), ('does', 1), ('entitle', 1), ('please.', 1), ('instead', 1), ('knew', 1), ('prudent', 1), ('use;', 1), ('security', 1), ('emanates', 1), ('justness', 1), ('cause,', 1), ('example,', 1), ('tempering', 1), ('qualities', 1), ('humility', 1), ('restraint.', 1), ('keepers', 1), ('legacy.', 1), ('guided', 1), ('principles', 1), ('threats', 1), ('demand', 1), ('effort,', 1), ('understanding', 1), ('nations.', 1), ('responsibly', 1), ('leave', 1), ('iraq', 1), ('forge', 1), ('hard-earned', 1), ('afghanistan.', 1), ('friends', 1), ('former', 1), ('foes,', 1), ('tirelessly', 1), ('lessen', 1), ('nuclear', 1), ('threat,', 1), ('roll', 1), ('specter', 1), ('warming', 1), ('apologize', 1), ('life,', 1), ('waver', 1), ('defense.', 1), ('advance', 1), ('aims', 1), ('inducing', 1), ('terror', 1), ('slaughtering', 1), ('innocents,', 1), ('broken', 1), ('outlast', 1), ('defeat', 1), ('patchwork', 1), ('heritage', 1), ('strength,', 1), ('weakness.', 1), ('christians', 1), ('muslims,', 1), ('jews', 1), ('hindus,', 1), ('non-believers.', 1), ('shaped', 1), ('language', 1), ('culture,', 1), ('drawn', 1), ('earth;', 1), ('tasted', 1), ('bitter', 1), ('swill', 1), ('civil', 1), ('segregation,', 1), ('emerged', 1), ('dark', 1), ('chapter', 1), ('united,', 1), ('help', 1), ('believe', 1), ('hatreds', 1), ('someday', 1), ('pass;', 1), ('tribe', 1), ('soon', 1), ('dissolve;', 1), ('smaller,', 1), ('humanity', 1), ('reveal', 1), ('itself;', 1), ('play', 1), ('ushering', 1), ('muslim', 1), ('forward,', 1), ('based', 1), ('interest', 1), ('respect.', 1), ('leaders', 1), ('around', 1), ('globe', 1), ('sow', 1), ('conflict,', 1), ('blame', 1), ("society's", 1), ('ills', 1), ('judge', 1), ('build,', 1), ('destroy.', 1), ('cling', 1), ('corruption', 1), ('deceit', 1), ('silencing', 1), ('dissent,', 1), ('wrong', 1), ('side', 1), ('history,', 1), ('hand', 1), ('if', 1), ('unclench', 1), ('fist.', 1), ('poor', 1), ('nations,', 1), ('pledge', 1), ('alongside', 1), ('farms', 1), ('flourish', 1), ('clean', 1), ('flow;', 1), ('nourish', 1), ('starved', 1), ('bodies', 1), ('hungry', 1), ('minds.', 1), ('nations', 1), ('ours', 1), ('enjoy', 1), ('relative', 1), ('plenty,', 1), ('afford', 1), ('indifference', 1), ('suffering', 1), ('outside', 1), ('borders,', 1), ('consume', 1), ("world's", 1), ('resources', 1), ('regard', 1), ('effect.', 1), ('changed,', 1), ('change', 1), ('it.', 1), ('consider', 1), ('unfolds', 1), ('humble', 1), ('gratitude', 1), ('very', 1), ('hour', 1), ('patrol', 1), ('far-off', 1), ('deserts', 1), ('distant', 1), ('mountains.', 1), ('tell', 1), ('fallen', 1), ('heroes', 1), ('lie', 1), ('arlington', 1), ('whisper', 1), ('ages.', 1), ('honor', 1), ('guardians', 1), ('liberty,', 1), ('embody', 1), ('themselves.', 1), ('yet', 1), ('moment,', 1), ('define', 1), ('generation,', 1), ('precisely', 1), ('inhabit', 1), ('all.', 1), ('much', 1), ('ultimately', 1), ('determination', 1), ('relies.', 1), ('kindness', 1), ('stranger', 1), ('levees', 1), ('break,', 1), ('selflessness', 1), ('would', 1), ('cut', 1), ('hours', 1), ('see', 1), ('lose', 1), ('job', 1), ('sees', 1), ('darkest', 1), ('hours.', 1), ("firefighter's", 1), ('storm', 1), ('stairway', 1), ('filled', 1), ('smoke,', 1), ("parent's", 1), ('nurture', 1), ('finally', 1), ('decides', 1), ('fate.', 1), ('instruments', 1), ('values', 1), ('depends', 1), ('honesty', 1), ('fair', 1), ('play,', 1), ('tolerance', 1), ('curiosity,', 1), ('loyalty', 1), ('patriotism', 1), ('old.', 1), ('true.', 1), ('quiet', 1), ('progress', 1), ('history.', 1), ('demanded,', 1), ('then,', 1), ('return', 1), ('truths.', 1), ('required', 1), ('responsibility', 1), ('recognition', 1), ('ourselves,', 1), ('world;', 1), ('grudgingly', 1), ('accept,', 1), ('seize', 1), ('gladly,', 1), ('firm', 1), ('satisfying', 1), ('spirit,', 1), ('defining', 1), ('character', 1), ('giving', 1), ('difficult', 1), ('task.', 1), ('price', 1), ('citizenship.', 1), ('source', 1), ('shape', 1), ('uncertain', 1), ('destiny.', 1), ('liberty', 1), ('creed,', 1), ('race', 1), ('join', 1), ('celebration', 1), ('magnificent', 1), ('mall;', 1), ('whose', 1), ('60', 1), ('years', 1), ('ago', 1), ('served', 1), ('local', 1), ('restaurant', 1), ('sacred', 1), ('mark', 1), ('remembrance', 1), ('how', 1), ('traveled.', 1), ('year', 1), ('birth,', 1), ('coldest', 1), ('months,', 1), ('band', 1), ('patriots', 1), ('huddled', 1), ('dying', 1), ('campfires', 1), ('shores', 1), ('river.', 1), ('capital', 1), ('abandoned.', 1), ('enemy', 1), ('advancing.', 1), ('snow', 1), ('stained', 1), ('blood.', 1), ('outcome', 1), ('revolution', 1), ('doubt,', 1), ('ordered', 1), ('read', 1), ('people:', 1), ('"let', 1), ('told', 1), ('world...that', 1), ('depth', 1), ('winter,', 1), ('virtue', 1), ('could', 1), ('survive...', 1), ('city', 1), ('country,', 1), ('alarmed', 1), ('danger,', 1), ('came', 1), ('[it]."', 1), ('dangers,', 1), ('winter', 1), ('hardship,', 1), ('timeless', 1), ('words.', 1), ('virtue,', 1), ('currents,', 1), ('endure', 1), ('storms', 1), ('come.', 1), ('said', 1), ("children's", 1), ('tested', 1), ('refused', 1), ('end,', 1), ('turn', 1), ('falter;', 1), ('eyes', 1), ('fixed', 1), ('horizon', 1), ("god's", 1), ('grace', 1), ('great', 1), ('gift', 1), ('delivered', 1), ('safely', 1), ('united', 1), ('states', 1)]
[('the', 136), ('and', 111), ('of', 82), ('to', 71), ('our', 68), ('we', 59), ('that', 49), ('a', 46), ('is', 36), ('in', 26), ('this', 24), ('for', 23), ('are', 22), ('but', 20), ('--', 17), ('on', 17), ('it', 17), ('they', 17), ('will', 17), ('not', 16), ('have', 15), ('has', 14), ('us', 14), ('with', 13), ('who', 13), ('can', 13), ('be', 12), ('as', 11), ('or', 11), ('those', 11), ('(applause.)', 11), ('nation', 10), ('you', 10), ('their', 10), ('us,', 9), ('these', 9), ('new', 9), ('by', 8), ('every', 8), ('so', 8), ('because', 8), ('must', 8), ('its', 8), ('all', 8), ('than', 8), ('what', 8), ('been', 7), ('at', 7), ('when', 7), ('too', 6), ('less', 6), ('no', 6), ('cannot', 6), ('common', 6), ('let', 6), ('now', 5), ('know', 5), ('time', 5), ('from', 5), ('only', 5), ('people', 5), ('nor', 5), ('was', 5), ('before', 4), ('america', 4), ('long', 4), ('seek', 4), ('more', 4), ('men', 4), ('women', 4), ('greater', 4), ('work', 4), ('meet', 4), ('whether', 4), ('power', 4), ('through', 4), ('which', 4), ('i', 3), ('today', 3), ('words', 3), ('carried', 3), ('founding', 3), ('generation', 3), ('crisis', 3), ('economy', 3), ('hard', 3), ('across', 3), ('say', 3), ('day,', 3), ('hope', 3), ('over', 3), ('come', 3), ('an', 3), ('journey', 3), ('things', 3), ('up', 3), ('were', 3), ('most', 3), ('last', 3), ('there', 3), ('question', 3), ('where', 3), ('do', 3), ('between', 3), ('force', 3), ('just', 3), ('them', 3), ('father', 3), ('future', 3), ('once', 3), ('spirit', 3), ('you.', 3), ('shall', 3), ('your', 3), ('upon', 3), ('may', 3), ('god', 3), ('my', 2), ('stand', 2), ('trust', 2), ('thank', 2), ('service', 2), ('(applause)', 2), ('cooperation', 2), ('throughout', 2), ('americans', 2), ('taken', 2), ('oath.', 2), ('prosperity', 2), ('still', 2), ('waters', 2), ('peace.', 2), ('ideals', 2), ('war', 2), ('part', 2), ('also', 2), ('make', 2), ('age.', 2), ('jobs', 2), ('health', 2), ('care', 2), ('schools', 2), ('fail', 2), ('many', 2), ('each', 2), ('day', 2), ('planet.', 2), ('confidence', 2), ("america's", 2), ('lower', 2), ('challenges', 2), ('face', 2), ('america:', 2), ('end', 2), ('false', 2), ('far', 2), ('remain', 2), ('enduring', 2), ('better', 2), ('promise', 2), ('greatness', 2), ('understand', 2), ('never', 2), ('one', 2), ('path', 2), ('work,', 2), ('some', 2), ('life.', 2), ('west,', 2), ('earth.', 2), ('like', 2), ('again', 2), ('might', 2), ('ambitions,', 2), ('wealth', 2), ('workers', 2), ('today,', 2), ('ourselves', 2), ('begin', 2), ('america.', 2), ('calls', 2), ('lines', 2), ('feed', 2), ("we'll", 2), ('restore', 2), ('do.', 2), ('big', 2), ('longer', 2), ('government', 2), ('find', 2), ('answer', 2), ('light', 2), ('market', 2), ('freedom', 2), ('without', 2), ('out', 2), ('success', 2), ('extend', 2), ('willing', 2), ('faced', 2), ('charter', 2), ('man', 2), ('generations.', 2), ('world,', 2), ('small', 2), ('friend', 2), ('child', 2), ('peace', 2), ('grows', 2), ('even', 2), ('old', 2), ('back', 2), ('way', 2), ('stronger', 2), ('world', 2), ('role', 2), ('era', 2), ('mutual', 2), ('remember', 2), ('brave', 2), ('something', 2), ('willingness', 2), ('meaning', 2), ('moment', 2), ('do,', 2), ('faith', 2), ('american', 2), ('take', 2), ('rather', 2), ('courage', 2), ('new.', 2), ('duties', 2), ('knowledge', 2), ('nothing', 2), ('why', 2), ('children', 2), ('icy', 2), ('forth', 2), ('did', 2), ('bless', 2), ('fellow', 1), ('citizens:', 1), ('here', 1), ('humbled', 1), ('task', 1), ('grateful', 1), ("you've", 1), ('bestowed,', 1), ('mindful', 1), ('sacrifices', 1), ('borne', 1), ('ancestors.', 1), ('president', 1), ('bush', 1), ('his', 1), ('well', 1), ('generosity', 1), ('he', 1), ('shown', 1), ('transition.', 1), ('forty-four', 1), ('presidential', 1), ('spoken', 1), ('during', 1), ('rising', 1), ('tides', 1), ('yet,', 1), ('often,', 1), ('oath', 1), ('amidst', 1), ('gathering', 1), ('clouds', 1), ('raging', 1), ('storms.', 1), ('moments,', 1), ('simply', 1), ('skill', 1), ('vision', 1), ('high', 1), ('office,', 1), ('we,', 1), ('people,', 1), ('remained', 1), ('faithful', 1), ('forebears', 1), ('true', 1), ('documents.', 1), ('been;', 1), ('americans.', 1), ('midst', 1), ('well+++', 1), ('understood.', 1), ('against', 1), ('far-reaching', 1), ('network', 1), ('violence', 1), ('hatred.', 1), ('badly', 1), ('weakened,', 1), ('consequence', 1), ('greed', 1), ('irresponsibility', 1), ('some,', 1), ('collective', 1), ('failure', 1), ('choices', 1), ('prepare', 1), ('homes', 1), ('lost,', 1), ('shed,', 1), ('businesses', 1), ('shuttered.', 1), ('costly,', 1), ('brings', 1), ('further', 1), ('evidence', 1), ('ways', 1), ('use', 1), ('energy', 1), ('strengthen', 1), ('adversaries', 1), ('threaten', 1), ('indicators', 1), ('crisis,', 1), ('subject', 1), ('data', 1), ('statistics.', 1), ('measurable,', 1), ('profound,', 1), ('sapping', 1), ('land;', 1), ('nagging', 1), ('fear', 1), ('decline', 1), ('inevitable,', 1), ('next', 1), ('sights.', 1), ('real.', 1), ('serious', 1), ('many.', 1), ('met', 1), ('easily', 1), ('short', 1), ('span', 1), ('time.', 1), ('met.', 1), ('gather', 1), ('chosen', 1), ('fear,', 1), ('unity', 1), ('purpose', 1), ('conflict', 1), ('discord.', 1), ('proclaim', 1), ('petty', 1), ('grievances', 1), ('promises,', 1), ('recriminations', 1), ('worn-out', 1), ('dogmas', 1), ('strangled', 1), ('politics.', 1), ('young', 1), ('nation.', 1), ('scripture,', 1), ('set', 1), ('aside', 1), ('childish', 1), ('things.', 1), ('reaffirm', 1), ('spirit;', 1), ('choose', 1), ('history;', 1), ('carry', 1), ('forward', 1), ('precious', 1), ('gift,', 1), ('noble', 1), ('idea', 1), ('passed', 1), ('generation:', 1), ('god-given', 1), ('equal,', 1), ('free,', 1), ('deserve', 1), ('chance', 1), ('pursue', 1), ('full', 1), ('measure', 1), ('happiness.', 1), ('reaffirming', 1), ('given.', 1), ('earned.', 1), ('short-cuts', 1), ('settling', 1), ('less.', 1), ('faint-hearted,', 1), ('prefer', 1), ('leisure', 1), ('pleasures', 1), ('riches', 1), ('fame.', 1), ('rather,', 1), ('risk-takers,', 1), ('doers,', 1), ('makers', 1), ('celebrated,', 1), ('often', 1), ('obscure', 1), ('labor', 1), ('rugged', 1), ('towards', 1), ('freedom.', 1), ('packed', 1), ('few', 1), ('worldly', 1), ('possessions', 1), ('traveled', 1), ('oceans', 1), ('search', 1), ('toiled', 1), ('sweatshops,', 1), ('settled', 1), ('endured', 1), ('lash', 1), ('whip,', 1), ('plowed', 1), ('fought', 1), ('died', 1), ('places', 1), ('concord', 1), ('gettysburg,', 1), ('normandy', 1), ('khe', 1), ('sahn.', 1), ('struggled', 1), ('sacrificed', 1), ('worked', 1), ('till', 1), ('hands', 1), ('raw', 1), ('live', 1), ('saw', 1), ('bigger', 1), ('sum', 1), ('individual', 1), ('differences', 1), ('birth', 1), ('faction.', 1), ('continue', 1), ('today.', 1), ('prosperous,', 1), ('powerful', 1), ('productive', 1), ('began.', 1), ('minds', 1), ('inventive,', 1), ('goods', 1), ('services', 1), ('needed', 1), ('week,', 1), ('month,', 1), ('year.', 1), ('capacity', 1), ('remains', 1), ('undiminished.', 1), ('standing', 1), ('pat,', 1), ('protecting', 1), ('narrow', 1), ('interests', 1), ('putting', 1), ('off', 1), ('unpleasant', 1), ('decisions', 1), ('surely', 1), ('passed.', 1), ('starting', 1), ('pick', 1), ('up,', 1), ('dust', 1), ('off,', 1), ('remaking', 1), ('everywhere', 1), ('look,', 1), ('done.', 1), ('state', 1), ('action,', 1), ('bold', 1), ('swift.', 1), ('act,', 1), ('create', 1), ('jobs,', 1), ('lay', 1), ('foundation', 1), ('growth.', 1), ('build', 1), ('roads', 1), ('bridges,', 1), ('electric', 1), ('grids', 1), ('digital', 1), ('commerce', 1), ('bind', 1), ('together.', 1), ('science', 1), ('rightful', 1), ('place,', 1), ('wield', 1), ("technology's", 1), ('wonders', 1), ('raise', 1), ("care's", 1), ('quality', 1), ('cost.', 1), ('harness', 1), ('sun', 1), ('winds', 1), ('soil', 1), ('fuel', 1), ('cars', 1), ('run', 1), ('factories.', 1), ('transform', 1), ('colleges', 1), ('universities', 1), ('demands', 1), ('now,', 1), ('scale', 1), ('suggest', 1), ('system', 1), ('tolerate', 1), ('plans.', 1), ('memories', 1), ('short,', 1), ('forgotten', 1), ('country', 1), ('already', 1), ('done,', 1), ('free', 1), ('achieve', 1), ('imagination', 1), ('joined', 1), ('purpose,', 1), ('necessity', 1), ('courage.', 1), ('cynics', 1), ('ground', 1), ('shifted', 1), ('beneath', 1), ('them,', 1), ('stale', 1), ('political', 1), ('arguments', 1), ('consumed', 1), ('apply.', 1), ('ask', 1), ('small,', 1), ('works', 1), ('helps', 1), ('families', 1), ('decent', 1), ('wage,', 1), ('afford,', 1), ('retirement', 1), ('dignified.', 1), ('yes,', 1), ('intend', 1), ('move', 1), ('forward.', 1), ('no,', 1), ('programs', 1), ('end.', 1), ('manage', 1), ("public's", 1), ('dollars', 1), ('held', 1), ('account,', 1), ('spend', 1), ('wisely,', 1), ('reform', 1), ('bad', 1), ('habits,', 1), ('business', 1), ('then', 1), ('vital', 1), ('government.', 1), ('good', 1), ('ill.', 1), ('generate', 1), ('expand', 1), ('unmatched.', 1), ('reminded', 1), ('watchful', 1), ('eye,', 1), ('spin', 1), ('control.', 1), ('prosper', 1), ('favors', 1), ('prosperous.', 1), ('always', 1), ('depended', 1), ('size', 1), ('gross', 1), ('domestic', 1), ('product,', 1), ('reach', 1), ('prosperity,', 1), ('ability', 1), ('opportunity', 1), ('heart', 1), ('charity,', 1), ('surest', 1), ('route', 1), ('good.', 1), ('defense,', 1), ('reject', 1), ('choice', 1), ('safety', 1), ('ideals.', 1), ('fathers', 1), ('fathers,', 1), ('perils', 1), ('scarcely', 1), ('imagine,', 1), ('drafted', 1), ('assure', 1), ('rule', 1), ('law', 1), ('rights', 1), ('expanded', 1), ('blood', 1), ('give', 1), ('expedience', 1), ('sake.', 1), ('so,', 1), ('other', 1), ('peoples', 1), ('governments', 1), ('watching', 1), ('grandest', 1), ('capitals', 1), ('village', 1), ('born,', 1), ('nation,', 1), ('man,', 1), ('woman', 1), ('seeks', 1), ('dignity.', 1), ('ready', 1), ('lead', 1), ('more.', 1), ('recall', 1), ('earlier', 1), ('generations', 1), ('down', 1), ('fascism', 1), ('communism', 1), ('missiles', 1), ('tanks,', 1), ('sturdy', 1), ('alliances', 1), ('convictions.', 1), ('understood', 1), ('alone', 1), ('protect', 1), ('does', 1), ('entitle', 1), ('please.', 1), ('instead', 1), ('knew', 1), ('prudent', 1), ('use;', 1), ('security', 1), ('emanates', 1), ('justness', 1), ('cause,', 1), ('example,', 1), ('tempering', 1), ('qualities', 1), ('humility', 1), ('restraint.', 1), ('keepers', 1), ('legacy.', 1), ('guided', 1), ('principles', 1), ('threats', 1), ('demand', 1), ('effort,', 1), ('understanding', 1), ('nations.', 1), ('responsibly', 1), ('leave', 1), ('iraq', 1), ('forge', 1), ('hard-earned', 1), ('afghanistan.', 1), ('friends', 1), ('former', 1), ('foes,', 1), ('tirelessly', 1), ('lessen', 1), ('nuclear', 1), ('threat,', 1), ('roll', 1), ('specter', 1), ('warming', 1), ('apologize', 1), ('life,', 1), ('waver', 1), ('defense.', 1), ('advance', 1), ('aims', 1), ('inducing', 1), ('terror', 1), ('slaughtering', 1), ('innocents,', 1), ('broken', 1), ('outlast', 1), ('defeat', 1), ('patchwork', 1), ('heritage', 1), ('strength,', 1), ('weakness.', 1), ('christians', 1), ('muslims,', 1), ('jews', 1), ('hindus,', 1), ('non-believers.', 1), ('shaped', 1), ('language', 1), ('culture,', 1), ('drawn', 1), ('earth;', 1), ('tasted', 1), ('bitter', 1), ('swill', 1), ('civil', 1), ('segregation,', 1), ('emerged', 1), ('dark', 1), ('chapter', 1), ('united,', 1), ('help', 1), ('believe', 1), ('hatreds', 1), ('someday', 1), ('pass;', 1), ('tribe', 1), ('soon', 1), ('dissolve;', 1), ('smaller,', 1), ('humanity', 1), ('reveal', 1), ('itself;', 1), ('play', 1), ('ushering', 1), ('muslim', 1), ('forward,', 1), ('based', 1), ('interest', 1), ('respect.', 1), ('leaders', 1), ('around', 1), ('globe', 1), ('sow', 1), ('conflict,', 1), ('blame', 1), ("society's", 1), ('ills', 1), ('judge', 1), ('build,', 1), ('destroy.', 1), ('cling', 1), ('corruption', 1), ('deceit', 1), ('silencing', 1), ('dissent,', 1), ('wrong', 1), ('side', 1), ('history,', 1), ('hand', 1), ('if', 1), ('unclench', 1), ('fist.', 1), ('poor', 1), ('nations,', 1), ('pledge', 1), ('alongside', 1), ('farms', 1), ('flourish', 1), ('clean', 1), ('flow;', 1), ('nourish', 1), ('starved', 1), ('bodies', 1), ('hungry', 1), ('minds.', 1), ('nations', 1), ('ours', 1), ('enjoy', 1), ('relative', 1), ('plenty,', 1), ('afford', 1), ('indifference', 1), ('suffering', 1), ('outside', 1), ('borders,', 1), ('consume', 1), ("world's", 1), ('resources', 1), ('regard', 1), ('effect.', 1), ('changed,', 1), ('change', 1), ('it.', 1), ('consider', 1), ('unfolds', 1), ('humble', 1), ('gratitude', 1), ('very', 1), ('hour', 1), ('patrol', 1), ('far-off', 1), ('deserts', 1), ('distant', 1), ('mountains.', 1), ('tell', 1), ('fallen', 1), ('heroes', 1), ('lie', 1), ('arlington', 1), ('whisper', 1), ('ages.', 1), ('honor', 1), ('guardians', 1), ('liberty,', 1), ('embody', 1), ('themselves.', 1), ('yet', 1), ('moment,', 1), ('define', 1), ('generation,', 1), ('precisely', 1), ('inhabit', 1), ('all.', 1), ('much', 1), ('ultimately', 1), ('determination', 1), ('relies.', 1), ('kindness', 1), ('stranger', 1), ('levees', 1), ('break,', 1), ('selflessness', 1), ('would', 1), ('cut', 1), ('hours', 1), ('see', 1), ('lose', 1), ('job', 1), ('sees', 1), ('darkest', 1), ('hours.', 1), ("firefighter's", 1), ('storm', 1), ('stairway', 1), ('filled', 1), ('smoke,', 1), ("parent's", 1), ('nurture', 1), ('finally', 1), ('decides', 1), ('fate.', 1), ('instruments', 1), ('values', 1), ('depends', 1), ('honesty', 1), ('fair', 1), ('play,', 1), ('tolerance', 1), ('curiosity,', 1), ('loyalty', 1), ('patriotism', 1), ('old.', 1), ('true.', 1), ('quiet', 1), ('progress', 1), ('history.', 1), ('demanded,', 1), ('then,', 1), ('return', 1), ('truths.', 1), ('required', 1), ('responsibility', 1), ('recognition', 1), ('ourselves,', 1), ('world;', 1), ('grudgingly', 1), ('accept,', 1), ('seize', 1), ('gladly,', 1), ('firm', 1), ('satisfying', 1), ('spirit,', 1), ('defining', 1), ('character', 1), ('giving', 1), ('difficult', 1), ('task.', 1), ('price', 1), ('citizenship.', 1), ('source', 1), ('shape', 1), ('uncertain', 1), ('destiny.', 1), ('liberty', 1), ('creed,', 1), ('race', 1), ('join', 1), ('celebration', 1), ('magnificent', 1), ('mall;', 1), ('whose', 1), ('60', 1), ('years', 1), ('ago', 1), ('served', 1), ('local', 1), ('restaurant', 1), ('sacred', 1), ('mark', 1), ('remembrance', 1), ('how', 1), ('traveled.', 1), ('year', 1), ('birth,', 1), ('coldest', 1), ('months,', 1), ('band', 1), ('patriots', 1), ('huddled', 1), ('dying', 1), ('campfires', 1), ('shores', 1), ('river.', 1), ('capital', 1), ('abandoned.', 1), ('enemy', 1), ('advancing.', 1), ('snow', 1), ('stained', 1), ('blood.', 1), ('outcome', 1), ('revolution', 1), ('doubt,', 1), ('ordered', 1), ('read', 1), ('people:', 1), ('"let', 1), ('told', 1), ('world...that', 1), ('depth', 1), ('winter,', 1), ('virtue', 1), ('could', 1), ('survive...', 1), ('city', 1), ('country,', 1), ('alarmed', 1), ('danger,', 1), ('came', 1), ('[it]."', 1), ('dangers,', 1), ('winter', 1), ('hardship,', 1), ('timeless', 1), ('words.', 1), ('virtue,', 1), ('currents,', 1), ('endure', 1), ('storms', 1), ('come.', 1), ('said', 1), ("children's", 1), ('tested', 1), ('refused', 1), ('end,', 1), ('turn', 1), ('falter;', 1), ('eyes', 1), ('fixed', 1), ('horizon', 1), ("god's", 1), ('grace', 1), ('great', 1), ('gift', 1), ('delivered', 1), ('safely', 1), ('united', 1), ('states', 1)]
Counter({'the': 136, 'and': 111, 'of': 82, 'to': 71, 'our': 68, 'we': 59, 'that': 49, 'a': 46, 'is': 36, 'in': 26, 'this': 24, 'for': 23, 'are': 22, 'but': 20, '--': 17, 'on': 17, 'it': 17, 'they': 17, 'will': 17, 'not': 16, 'have': 15, 'has': 14, 'us': 14, 'with': 13, 'who': 13, 'can': 13, 'be': 12, 'as': 11, 'or': 11, 'those': 11, '(applause.)': 11, 'nation': 10, 'you': 10, 'their': 10, 'us,': 9, 'these': 9, 'new': 9, 'by': 8, 'every': 8, 'so': 8, 'because': 8, 'must': 8, 'its': 8, 'all': 8, 'than': 8, 'what': 8, 'been': 7, 'at': 7, 'when': 7, 'too': 6, 'less': 6, 'no': 6, 'cannot': 6, 'common': 6, 'let': 6, 'now': 5, 'know': 5, 'time': 5, 'from': 5, 'only': 5, 'people': 5, 'nor': 5, 'was': 5, 'before': 4, 'america': 4, 'long': 4, 'seek': 4, 'more': 4, 'men': 4, 'women': 4, 'greater': 4, 'work': 4, 'meet': 4, 'whether': 4, 'power': 4, 'through': 4, 'which': 4, 'i': 3, 'today': 3, 'words': 3, 'carried': 3, 'founding': 3, 'generation': 3, 'crisis': 3, 'economy': 3, 'hard': 3, 'across': 3, 'say': 3, 'day,': 3, 'hope': 3, 'over': 3, 'come': 3, 'an': 3, 'journey': 3, 'things': 3, 'up': 3, 'were': 3, 'most': 3, 'last': 3, 'there': 3, 'question': 3, 'where': 3, 'do': 3, 'between': 3, 'force': 3, 'just': 3, 'them': 3, 'father': 3, 'future': 3, 'once': 3, 'spirit': 3, 'you.': 3, 'shall': 3, 'your': 3, 'upon': 3, 'may': 3, 'god': 3, 'my': 2, 'stand': 2, 'trust': 2, 'thank': 2, 'service': 2, '(applause)': 2, 'cooperation': 2, 'throughout': 2, 'americans': 2, 'taken': 2, 'oath.': 2, 'prosperity': 2, 'still': 2, 'waters': 2, 'peace.': 2, 'ideals': 2, 'war': 2, 'part': 2, 'also': 2, 'make': 2, 'age.': 2, 'jobs': 2, 'health': 2, 'care': 2, 'schools': 2, 'fail': 2, 'many': 2, 'each': 2, 'day': 2, 'planet.': 2, 'confidence': 2, "america's": 2, 'lower': 2, 'challenges': 2, 'face': 2, 'america:': 2, 'end': 2, 'false': 2, 'far': 2, 'remain': 2, 'enduring': 2, 'better': 2, 'promise': 2, 'greatness': 2, 'understand': 2, 'never': 2, 'one': 2, 'path': 2, 'work,': 2, 'some': 2, 'life.': 2, 'west,': 2, 'earth.': 2, 'like': 2, 'again': 2, 'might': 2, 'ambitions,': 2, 'wealth': 2, 'workers': 2, 'today,': 2, 'ourselves': 2, 'begin': 2, 'america.': 2, 'calls': 2, 'lines': 2, 'feed': 2, "we'll": 2, 'restore': 2, 'do.': 2, 'big': 2, 'longer': 2, 'government': 2, 'find': 2, 'answer': 2, 'light': 2, 'market': 2, 'freedom': 2, 'without': 2, 'out': 2, 'success': 2, 'extend': 2, 'willing': 2, 'faced': 2, 'charter': 2, 'man': 2, 'generations.': 2, 'world,': 2, 'small': 2, 'friend': 2, 'child': 2, 'peace': 2, 'grows': 2, 'even': 2, 'old': 2, 'back': 2, 'way': 2, 'stronger': 2, 'world': 2, 'role': 2, 'era': 2, 'mutual': 2, 'remember': 2, 'brave': 2, 'something': 2, 'willingness': 2, 'meaning': 2, 'moment': 2, 'do,': 2, 'faith': 2, 'american': 2, 'take': 2, 'rather': 2, 'courage': 2, 'new.': 2, 'duties': 2, 'knowledge': 2, 'nothing': 2, 'why': 2, 'children': 2, 'icy': 2, 'forth': 2, 'did': 2, 'bless': 2, 'fellow': 1, 'citizens:': 1, 'here': 1, 'humbled': 1, 'task': 1, 'grateful': 1, "you've": 1, 'bestowed,': 1, 'mindful': 1, 'sacrifices': 1, 'borne': 1, 'ancestors.': 1, 'president': 1, 'bush': 1, 'his': 1, 'well': 1, 'generosity': 1, 'he': 1, 'shown': 1, 'transition.': 1, 'forty-four': 1, 'presidential': 1, 'spoken': 1, 'during': 1, 'rising': 1, 'tides': 1, 'yet,': 1, 'often,': 1, 'oath': 1, 'amidst': 1, 'gathering': 1, 'clouds': 1, 'raging': 1, 'storms.': 1, 'moments,': 1, 'simply': 1, 'skill': 1, 'vision': 1, 'high': 1, 'office,': 1, 'we,': 1, 'people,': 1, 'remained': 1, 'faithful': 1, 'forebears': 1, 'true': 1, 'documents.': 1, 'been;': 1, 'americans.': 1, 'midst': 1, 'well+++': 1, 'understood.': 1, 'against': 1, 'far-reaching': 1, 'network': 1, 'violence': 1, 'hatred.': 1, 'badly': 1, 'weakened,': 1, 'consequence': 1, 'greed': 1, 'irresponsibility': 1, 'some,': 1, 'collective': 1, 'failure': 1, 'choices': 1, 'prepare': 1, 'homes': 1, 'lost,': 1, 'shed,': 1, 'businesses': 1, 'shuttered.': 1, 'costly,': 1, 'brings': 1, 'further': 1, 'evidence': 1, 'ways': 1, 'use': 1, 'energy': 1, 'strengthen': 1, 'adversaries': 1, 'threaten': 1, 'indicators': 1, 'crisis,': 1, 'subject': 1, 'data': 1, 'statistics.': 1, 'measurable,': 1, 'profound,': 1, 'sapping': 1, 'land;': 1, 'nagging': 1, 'fear': 1, 'decline': 1, 'inevitable,': 1, 'next': 1, 'sights.': 1, 'real.': 1, 'serious': 1, 'many.': 1, 'met': 1, 'easily': 1, 'short': 1, 'span': 1, 'time.': 1, 'met.': 1, 'gather': 1, 'chosen': 1, 'fear,': 1, 'unity': 1, 'purpose': 1, 'conflict': 1, 'discord.': 1, 'proclaim': 1, 'petty': 1, 'grievances': 1, 'promises,': 1, 'recriminations': 1, 'worn-out': 1, 'dogmas': 1, 'strangled': 1, 'politics.': 1, 'young': 1, 'nation.': 1, 'scripture,': 1, 'set': 1, 'aside': 1, 'childish': 1, 'things.': 1, 'reaffirm': 1, 'spirit;': 1, 'choose': 1, 'history;': 1, 'carry': 1, 'forward': 1, 'precious': 1, 'gift,': 1, 'noble': 1, 'idea': 1, 'passed': 1, 'generation:': 1, 'god-given': 1, 'equal,': 1, 'free,': 1, 'deserve': 1, 'chance': 1, 'pursue': 1, 'full': 1, 'measure': 1, 'happiness.': 1, 'reaffirming': 1, 'given.': 1, 'earned.': 1, 'short-cuts': 1, 'settling': 1, 'less.': 1, 'faint-hearted,': 1, 'prefer': 1, 'leisure': 1, 'pleasures': 1, 'riches': 1, 'fame.': 1, 'rather,': 1, 'risk-takers,': 1, 'doers,': 1, 'makers': 1, 'celebrated,': 1, 'often': 1, 'obscure': 1, 'labor': 1, 'rugged': 1, 'towards': 1, 'freedom.': 1, 'packed': 1, 'few': 1, 'worldly': 1, 'possessions': 1, 'traveled': 1, 'oceans': 1, 'search': 1, 'toiled': 1, 'sweatshops,': 1, 'settled': 1, 'endured': 1, 'lash': 1, 'whip,': 1, 'plowed': 1, 'fought': 1, 'died': 1, 'places': 1, 'concord': 1, 'gettysburg,': 1, 'normandy': 1, 'khe': 1, 'sahn.': 1, 'struggled': 1, 'sacrificed': 1, 'worked': 1, 'till': 1, 'hands': 1, 'raw': 1, 'live': 1, 'saw': 1, 'bigger': 1, 'sum': 1, 'individual': 1, 'differences': 1, 'birth': 1, 'faction.': 1, 'continue': 1, 'today.': 1, 'prosperous,': 1, 'powerful': 1, 'productive': 1, 'began.': 1, 'minds': 1, 'inventive,': 1, 'goods': 1, 'services': 1, 'needed': 1, 'week,': 1, 'month,': 1, 'year.': 1, 'capacity': 1, 'remains': 1, 'undiminished.': 1, 'standing': 1, 'pat,': 1, 'protecting': 1, 'narrow': 1, 'interests': 1, 'putting': 1, 'off': 1, 'unpleasant': 1, 'decisions': 1, 'surely': 1, 'passed.': 1, 'starting': 1, 'pick': 1, 'up,': 1, 'dust': 1, 'off,': 1, 'remaking': 1, 'everywhere': 1, 'look,': 1, 'done.': 1, 'state': 1, 'action,': 1, 'bold': 1, 'swift.': 1, 'act,': 1, 'create': 1, 'jobs,': 1, 'lay': 1, 'foundation': 1, 'growth.': 1, 'build': 1, 'roads': 1, 'bridges,': 1, 'electric': 1, 'grids': 1, 'digital': 1, 'commerce': 1, 'bind': 1, 'together.': 1, 'science': 1, 'rightful': 1, 'place,': 1, 'wield': 1, "technology's": 1, 'wonders': 1, 'raise': 1, "care's": 1, 'quality': 1, 'cost.': 1, 'harness': 1, 'sun': 1, 'winds': 1, 'soil': 1, 'fuel': 1, 'cars': 1, 'run': 1, 'factories.': 1, 'transform': 1, 'colleges': 1, 'universities': 1, 'demands': 1, 'now,': 1, 'scale': 1, 'suggest': 1, 'system': 1, 'tolerate': 1, 'plans.': 1, 'memories': 1, 'short,': 1, 'forgotten': 1, 'country': 1, 'already': 1, 'done,': 1, 'free': 1, 'achieve': 1, 'imagination': 1, 'joined': 1, 'purpose,': 1, 'necessity': 1, 'courage.': 1, 'cynics': 1, 'ground': 1, 'shifted': 1, 'beneath': 1, 'them,': 1, 'stale': 1, 'political': 1, 'arguments': 1, 'consumed': 1, 'apply.': 1, 'ask': 1, 'small,': 1, 'works': 1, 'helps': 1, 'families': 1, 'decent': 1, 'wage,': 1, 'afford,': 1, 'retirement': 1, 'dignified.': 1, 'yes,': 1, 'intend': 1, 'move': 1, 'forward.': 1, 'no,': 1, 'programs': 1, 'end.': 1, 'manage': 1, "public's": 1, 'dollars': 1, 'held': 1, 'account,': 1, 'spend': 1, 'wisely,': 1, 'reform': 1, 'bad': 1, 'habits,': 1, 'business': 1, 'then': 1, 'vital': 1, 'government.': 1, 'good': 1, 'ill.': 1, 'generate': 1, 'expand': 1, 'unmatched.': 1, 'reminded': 1, 'watchful': 1, 'eye,': 1, 'spin': 1, 'control.': 1, 'prosper': 1, 'favors': 1, 'prosperous.': 1, 'always': 1, 'depended': 1, 'size': 1, 'gross': 1, 'domestic': 1, 'product,': 1, 'reach': 1, 'prosperity,': 1, 'ability': 1, 'opportunity': 1, 'heart': 1, 'charity,': 1, 'surest': 1, 'route': 1, 'good.': 1, 'defense,': 1, 'reject': 1, 'choice': 1, 'safety': 1, 'ideals.': 1, 'fathers': 1, 'fathers,': 1, 'perils': 1, 'scarcely': 1, 'imagine,': 1, 'drafted': 1, 'assure': 1, 'rule': 1, 'law': 1, 'rights': 1, 'expanded': 1, 'blood': 1, 'give': 1, 'expedience': 1, 'sake.': 1, 'so,': 1, 'other': 1, 'peoples': 1, 'governments': 1, 'watching': 1, 'grandest': 1, 'capitals': 1, 'village': 1, 'born,': 1, 'nation,': 1, 'man,': 1, 'woman': 1, 'seeks': 1, 'dignity.': 1, 'ready': 1, 'lead': 1, 'more.': 1, 'recall': 1, 'earlier': 1, 'generations': 1, 'down': 1, 'fascism': 1, 'communism': 1, 'missiles': 1, 'tanks,': 1, 'sturdy': 1, 'alliances': 1, 'convictions.': 1, 'understood': 1, 'alone': 1, 'protect': 1, 'does': 1, 'entitle': 1, 'please.': 1, 'instead': 1, 'knew': 1, 'prudent': 1, 'use;': 1, 'security': 1, 'emanates': 1, 'justness': 1, 'cause,': 1, 'example,': 1, 'tempering': 1, 'qualities': 1, 'humility': 1, 'restraint.': 1, 'keepers': 1, 'legacy.': 1, 'guided': 1, 'principles': 1, 'threats': 1, 'demand': 1, 'effort,': 1, 'understanding': 1, 'nations.': 1, 'responsibly': 1, 'leave': 1, 'iraq': 1, 'forge': 1, 'hard-earned': 1, 'afghanistan.': 1, 'friends': 1, 'former': 1, 'foes,': 1, 'tirelessly': 1, 'lessen': 1, 'nuclear': 1, 'threat,': 1, 'roll': 1, 'specter': 1, 'warming': 1, 'apologize': 1, 'life,': 1, 'waver': 1, 'defense.': 1, 'advance': 1, 'aims': 1, 'inducing': 1, 'terror': 1, 'slaughtering': 1, 'innocents,': 1, 'broken': 1, 'outlast': 1, 'defeat': 1, 'patchwork': 1, 'heritage': 1, 'strength,': 1, 'weakness.': 1, 'christians': 1, 'muslims,': 1, 'jews': 1, 'hindus,': 1, 'non-believers.': 1, 'shaped': 1, 'language': 1, 'culture,': 1, 'drawn': 1, 'earth;': 1, 'tasted': 1, 'bitter': 1, 'swill': 1, 'civil': 1, 'segregation,': 1, 'emerged': 1, 'dark': 1, 'chapter': 1, 'united,': 1, 'help': 1, 'believe': 1, 'hatreds': 1, 'someday': 1, 'pass;': 1, 'tribe': 1, 'soon': 1, 'dissolve;': 1, 'smaller,': 1, 'humanity': 1, 'reveal': 1, 'itself;': 1, 'play': 1, 'ushering': 1, 'muslim': 1, 'forward,': 1, 'based': 1, 'interest': 1, 'respect.': 1, 'leaders': 1, 'around': 1, 'globe': 1, 'sow': 1, 'conflict,': 1, 'blame': 1, "society's": 1, 'ills': 1, 'judge': 1, 'build,': 1, 'destroy.': 1, 'cling': 1, 'corruption': 1, 'deceit': 1, 'silencing': 1, 'dissent,': 1, 'wrong': 1, 'side': 1, 'history,': 1, 'hand': 1, 'if': 1, 'unclench': 1, 'fist.': 1, 'poor': 1, 'nations,': 1, 'pledge': 1, 'alongside': 1, 'farms': 1, 'flourish': 1, 'clean': 1, 'flow;': 1, 'nourish': 1, 'starved': 1, 'bodies': 1, 'hungry': 1, 'minds.': 1, 'nations': 1, 'ours': 1, 'enjoy': 1, 'relative': 1, 'plenty,': 1, 'afford': 1, 'indifference': 1, 'suffering': 1, 'outside': 1, 'borders,': 1, 'consume': 1, "world's": 1, 'resources': 1, 'regard': 1, 'effect.': 1, 'changed,': 1, 'change': 1, 'it.': 1, 'consider': 1, 'unfolds': 1, 'humble': 1, 'gratitude': 1, 'very': 1, 'hour': 1, 'patrol': 1, 'far-off': 1, 'deserts': 1, 'distant': 1, 'mountains.': 1, 'tell': 1, 'fallen': 1, 'heroes': 1, 'lie': 1, 'arlington': 1, 'whisper': 1, 'ages.': 1, 'honor': 1, 'guardians': 1, 'liberty,': 1, 'embody': 1, 'themselves.': 1, 'yet': 1, 'moment,': 1, 'define': 1, 'generation,': 1, 'precisely': 1, 'inhabit': 1, 'all.': 1, 'much': 1, 'ultimately': 1, 'determination': 1, 'relies.': 1, 'kindness': 1, 'stranger': 1, 'levees': 1, 'break,': 1, 'selflessness': 1, 'would': 1, 'cut': 1, 'hours': 1, 'see': 1, 'lose': 1, 'job': 1, 'sees': 1, 'darkest': 1, 'hours.': 1, "firefighter's": 1, 'storm': 1, 'stairway': 1, 'filled': 1, 'smoke,': 1, "parent's": 1, 'nurture': 1, 'finally': 1, 'decides': 1, 'fate.': 1, 'instruments': 1, 'values': 1, 'depends': 1, 'honesty': 1, 'fair': 1, 'play,': 1, 'tolerance': 1, 'curiosity,': 1, 'loyalty': 1, 'patriotism': 1, 'old.': 1, 'true.': 1, 'quiet': 1, 'progress': 1, 'history.': 1, 'demanded,': 1, 'then,': 1, 'return': 1, 'truths.': 1, 'required': 1, 'responsibility': 1, 'recognition': 1, 'ourselves,': 1, 'world;': 1, 'grudgingly': 1, 'accept,': 1, 'seize': 1, 'gladly,': 1, 'firm': 1, 'satisfying': 1, 'spirit,': 1, 'defining': 1, 'character': 1, 'giving': 1, 'difficult': 1, 'task.': 1, 'price': 1, 'citizenship.': 1, 'source': 1, 'shape': 1, 'uncertain': 1, 'destiny.': 1, 'liberty': 1, 'creed,': 1, 'race': 1, 'join': 1, 'celebration': 1, 'magnificent': 1, 'mall;': 1, 'whose': 1, '60': 1, 'years': 1, 'ago': 1, 'served': 1, 'local': 1, 'restaurant': 1, 'sacred': 1, 'mark': 1, 'remembrance': 1, 'how': 1, 'traveled.': 1, 'year': 1, 'birth,': 1, 'coldest': 1, 'months,': 1, 'band': 1, 'patriots': 1, 'huddled': 1, 'dying': 1, 'campfires': 1, 'shores': 1, 'river.': 1, 'capital': 1, 'abandoned.': 1, 'enemy': 1, 'advancing.': 1, 'snow': 1, 'stained': 1, 'blood.': 1, 'outcome': 1, 'revolution': 1, 'doubt,': 1, 'ordered': 1, 'read': 1, 'people:': 1, '"let': 1, 'told': 1, 'world...that': 1, 'depth': 1, 'winter,': 1, 'virtue': 1, 'could': 1, 'survive...': 1, 'city': 1, 'country,': 1, 'alarmed': 1, 'danger,': 1, 'came': 1, '[it]."': 1, 'dangers,': 1, 'winter': 1, 'hardship,': 1, 'timeless': 1, 'words.': 1, 'virtue,': 1, 'currents,': 1, 'endure': 1, 'storms': 1, 'come.': 1, 'said': 1, "children's": 1, 'tested': 1, 'refused': 1, 'end,': 1, 'turn': 1, 'falter;': 1, 'eyes': 1, 'fixed': 1, 'horizon': 1, "god's": 1, 'grace': 1, 'great': 1, 'gift': 1, 'delivered': 1, 'safely': 1, 'united': 1, 'states': 1})
{'the': 136, 'and': 111, 'of': 82, 'to': 71, 'our': 68, 'we': 59, 'that': 49, 'a': 46, 'is': 36, 'in': 26, 'this': 24, 'for': 23, 'are': 22, 'but': 20, 'they': 17, 'it': 17, 'on': 17, '--': 17, 'will': 17, 'not': 16, 'have': 15, 'us': 14, 'has': 14, 'with': 13, 'can': 13, 'who': 13, 'be': 12, 'as': 11, '(applause.)': 11, 'those': 11, 'or': 11, 'their': 10, 'nation': 10, 'you': 10, 'us,': 9, 'new': 9, 'these': 9, 'must': 8, 'what': 8, 'its': 8, 'because': 8, 'than': 8, 'so': 8, 'every': 8, 'by': 8, 'all': 8, 'at': 7, 'been': 7, 'when': 7, 'less': 6, 'too': 6, 'common': 6, 'cannot': 6, 'no': 6, 'let': 6, 'from': 5, 'time': 5, 'was': 5, 'people': 5, 'nor': 5, 'only': 5, 'now': 5, 'know': 5, 'more': 4, 'which': 4, 'work': 4, 'greater': 4, 'before': 4, 'long': 4, 'whether': 4, 'seek': 4, 'meet': 4, 'through': 4, 'america': 4, 'women': 4, 'men': 4, 'power': 4, 'i': 3, 'crisis': 3, 'up': 3, 'question': 3, 'your': 3, 'force': 3, 'them': 3, 'day,': 3, 'an': 3, 'last': 3, 'words': 3, 'you.': 3, 'there': 3, 'do': 3, 'hard': 3, 'founding': 3, 'across': 3, 'most': 3, 'spirit': 3, 'just': 3, 'generation': 3, 'carried': 3, 'father': 3, 'economy': 3, 'may': 3, 'once': 3, 'today': 3, 'things': 3, 'between': 3, 'over': 3, 'where': 3, 'journey': 3, 'hope': 3, 'were': 3, 'say': 3, 'god': 3, 'shall': 3, 'come': 3, 'future': 3, 'upon': 3, 'false': 2, 'world': 2, 'out': 2, 'man': 2, 'west,': 2, 'work,': 2, 'generations.': 2, 'might': 2, 'bless': 2, 'success': 2, 'like': 2, 'america.': 2, 'understand': 2, 'icy': 2, 'day': 2, 'my': 2, 'make': 2, 'light': 2, 'child': 2, 'far': 2, 'faith': 2, 'children': 2, 'lower': 2, 'rather': 2, 'brave': 2, 'america:': 2, 'answer': 2, 'back': 2, 'peace': 2, 'fail': 2, 'faced': 2, 'still': 2, 'age.': 2, 'without': 2, 'ambitions,': 2, 'stand': 2, 'feed': 2, 'greatness': 2, 'begin': 2, 'jobs': 2, 'workers': 2, 'never': 2, 'throughout': 2, 'again': 2, 'meaning': 2, 'earth.': 2, 'trust': 2, 'find': 2, 'each': 2, 'american': 2, 'did': 2, 'ideals': 2, 'do,': 2, 'wealth': 2, '(applause)': 2, 'old': 2, 'do.': 2, 'willing': 2, 'knowledge': 2, 'forth': 2, 'small': 2, 'take': 2, 'nothing': 2, 'confidence': 2, 'path': 2, 'calls': 2, 'cooperation': 2, 'duties': 2, 'willingness': 2, 'war': 2, 'market': 2, 'extend': 2, 'remain': 2, 'thank': 2, 'big': 2, 'many': 2, 'americans': 2, 'taken': 2, 'charter': 2, 'mutual': 2, 'restore': 2, 'way': 2, 'ourselves': 2, "we'll": 2, 'waters': 2, "america's": 2, 'government': 2, 'friend': 2, 'stronger': 2, 'part': 2, 'prosperity': 2, 'world,': 2, 'oath.': 2, 'end': 2, 'lines': 2, 'era': 2, 'promise': 2, 'role': 2, 'grows': 2, 'life.': 2, 'longer': 2, 'health': 2, 'remember': 2, 'some': 2, 'also': 2, 'new.': 2, 'even': 2, 'face': 2, 'care': 2, 'peace.': 2, 'schools': 2, 'service': 2, 'why': 2, 'freedom': 2, 'challenges': 2, 'planet.': 2, 'today,': 2, 'moment': 2, 'enduring': 2, 'better': 2, 'courage': 2, 'something': 2, 'one': 2, 'river.': 1, 'guided': 1, 'fallen': 1, 'good': 1, 'intend': 1, 'factories.': 1, 'recall': 1, 'blood.': 1, 'worked': 1, 'free': 1, 'humility': 1, 'alone': 1, 'faint-hearted,': 1, 'storms.': 1, 'unpleasant': 1, 'sweatshops,': 1, 'liberty,': 1, 'prepare': 1, 'distant': 1, 'dangers,': 1, 'them,': 1, 'pleasures': 1, 'rights': 1, 'bind': 1, 'domestic': 1, 'task': 1, 'old.': 1, "technology's": 1, 'drafted': 1, 'build': 1, 'conflict,': 1, 'revolution': 1, 'firm': 1, 'gross': 1, 'deserts': 1, 'create': 1, 'bitter': 1, 'come.': 1, 'dogmas': 1, 'sum': 1, 'whose': 1, 'down': 1, 'heroes': 1, 'starved': 1, 'forward,': 1, 'believe': 1, 'former': 1, 'minds.': 1, 'gathering': 1, 'place,': 1, 'enemy': 1, 'narrow': 1, 'passed': 1, 'values': 1, 'darkest': 1, 'history,': 1, 'settling': 1, 'inhabit': 1, 'now,': 1, 'leave': 1, 'poor': 1, 'tribe': 1, 'nations': 1, 'remained': 1, 'already': 1, 'advancing.': 1, 'far-off': 1, 'principles': 1, 'inventive,': 1, 'gift,': 1, 'patriots': 1, 'told': 1, 'he': 1, 'remains': 1, 'restaurant': 1, 'chance': 1, 'blood': 1, 'spirit,': 1, 'carry': 1, 'standing': 1, 'demanded,': 1, 'favors': 1, 'often': 1, 'brings': 1, 'irresponsibility': 1, 'winter,': 1, 'strangled': 1, 'generation:': 1, 'opportunity': 1, 'ability': 1, 'humanity': 1, 'months,': 1, 'energy': 1, 'mindful': 1, 'fear,': 1, 'history.': 1, 'how': 1, 'play,': 1, 'outlast': 1, 'unclench': 1, 'change': 1, 'struggled': 1, 'leisure': 1, 'government.': 1, 'convictions.': 1, 'prosperous,': 1, 'bigger': 1, 'communism': 1, 'grudgingly': 1, 'silencing': 1, 'idea': 1, 'up,': 1, 'watching': 1, 'humbled': 1, 'defense,': 1, 'mountains.': 1, 'spoken': 1, 'bridges,': 1, 'nourish': 1, 'reaffirming': 1, 'use;': 1, 'places': 1, 'destroy.': 1, 'precious': 1, 'missiles': 1, 'turn': 1, 'done,': 1, 'khe': 1, 'transform': 1, 'next': 1, 'deceit': 1, 'product,': 1, 'inevitable,': 1, 'assure': 1, 'return': 1, 'move': 1, 'fixed': 1, 'safety': 1, 'filled': 1, 'broken': 1, 'giving': 1, 'states': 1, 'ways': 1, 'effort,': 1, 'pass;': 1, 'selflessness': 1, 'afghanistan.': 1, 'surest': 1, 'moment,': 1, 'vital': 1, 'short': 1, 'remaking': 1, 'commerce': 1, 'prosperous.': 1, 'advance': 1, 'high': 1, 'strengthen': 1, 'said': 1, 'today.': 1, 'full': 1, 'understood': 1, 'generations': 1, 'spirit;': 1, 'lessen': 1, 'weakness.': 1, 'given.': 1, 'imagine,': 1, 'americans.': 1, 'gratitude': 1, 'normandy': 1, 'choices': 1, 'growth.': 1, 'falter;': 1, 'measurable,': 1, 'documents.': 1, 'account,': 1, 'village': 1, 'young': 1, 'wrong': 1, 'shores': 1, 'defining': 1, 'rightful': 1, 'innocents,': 1, 'forty-four': 1, 'during': 1, 'afford,': 1, 'abandoned.': 1, 'around': 1, 'packed': 1, "care's": 1, 'outside': 1, 'bush': 1, 'birth,': 1, 'precisely': 1, 'rising': 1, 'consume': 1, 'dissolve;': 1, 'done.': 1, 'always': 1, 'citizens:': 1, 'land;': 1, 'winds': 1, 'run': 1, 'hatred.': 1, 'businesses': 1, 'end,': 1, 'magnificent': 1, 'scale': 1, 'badly': 1, 'families': 1, 'survive...': 1, 'break,': 1, '"let': 1, 'forgotten': 1, 'aside': 1, 'danger,': 1, 'often,': 1, 'years': 1, 'grievances': 1, 'fair': 1, 'stale': 1, 'fathers': 1, 'capitals': 1, 'reform': 1, 'nuclear': 1, 'cling': 1, 'prefer': 1, 'hardship,': 1, 'afford': 1, 'week,': 1, 'serious': 1, 'winter': 1, 'science': 1, 'ask': 1, 'knew': 1, 'failure': 1, 'alongside': 1, 'safely': 1, 'more.': 1, 'lead': 1, 'less.': 1, 'recriminations': 1, 'relies.': 1, 'tolerance': 1, 'subject': 1, '60': 1, 'other': 1, 'riches': 1, 'waver': 1, 'undiminished.': 1, 'continue': 1, 'tides': 1, 'amidst': 1, 'clean': 1, "firefighter's": 1, 'fuel': 1, 'makers': 1, 'see': 1, 'sees': 1, 'freedom.': 1, 'politics.': 1, 'imagination': 1, 'indicators': 1, 'truths.': 1, 'plowed': 1, 'effect.': 1, 'difficult': 1, 'ground': 1, 'inducing': 1, 'borne': 1, 'someday': 1, 'liberty': 1, 'define': 1, 'task.': 1, 'born,': 1, 'dark': 1, 'reaffirm': 1, 'toiled': 1, 'demands': 1, 'plenty,': 1, 'soil': 1, 'segregation,': 1, 'rugged': 1, 'guardians': 1, 'celebrated,': 1, 'noble': 1, 'humble': 1, "society's": 1, 'fascism': 1, 'muslim': 1, 'true': 1, 'beneath': 1, 'died': 1, 'sapping': 1, 'arguments': 1, 'muslims,': 1, 'electric': 1, 'joined': 1, 'small,': 1, 'violence': 1, 'network': 1, 'depth': 1, 'source': 1, 'world...that': 1, 'off': 1, 'nagging': 1, 'drawn': 1, 'fame.': 1, 'security': 1, 'read': 1, 'tempering': 1, 'campfires': 1, 'farms': 1, 'tasted': 1, 'crisis,': 1, 'lie': 1, 'purpose,': 1, 'starting': 1, 'yet': 1, 'uncertain': 1, 'foes,': 1, 'great': 1, 'served': 1, 'differences': 1, 'could': 1, 'dissent,': 1, 'began.': 1, 'habits,': 1, 'evidence': 1, 'gift': 1, 'cost.': 1, 'slaughtering': 1, 'needed': 1, 'patriotism': 1, 'eye,': 1, 'man,': 1, 'grateful': 1, 'help': 1, 'it.': 1, 'endured': 1, 'demand': 1, 'wield': 1, 'capital': 1, 'does': 1, 'join': 1, 'shuttered.': 1, 'unfolds': 1, 'hands': 1, 'heart': 1, 'putting': 1, 'came': 1, 'midst': 1, 'lose': 1, 'recognition': 1, 'fathers,': 1, 'simply': 1, 'oceans': 1, 'honor': 1, 'yet,': 1, 'based': 1, 'unmatched.': 1, 'discord.': 1, 'apply.': 1, 'against': 1, 'courage.': 1, 'suggest': 1, "you've": 1, 'necessity': 1, 'consumed': 1, 'faction.': 1, 'reveal': 1, 'legacy.': 1, 'jobs,': 1, 'office,': 1, 'required': 1, 'seeks': 1, 'dignified.': 1, 'homes': 1, 'jews': 1, 'traveled.': 1, 'his': 1, 'race': 1, 'statistics.': 1, 'decline': 1, 'prosper': 1, 'ordered': 1, 'earned.': 1, 'proclaim': 1, 'embody': 1, 'petty': 1, 'wonders': 1, 'scripture,': 1, 'powerful': 1, 'true.': 1, 'shown': 1, 'rather,': 1, 'seize': 1, 'ancestors.': 1, 'sacrificed': 1, 'all.': 1, 'well+++': 1, 'well': 1, "god's": 1, 'threaten': 1, 'presidential': 1, 'much': 1, 'earlier': 1, 'possessions': 1, 'flourish': 1, 'search': 1, 'control.': 1, 'quiet': 1, 'protect': 1, 'concord': 1, 'mark': 1, 'respect.': 1, 'route': 1, 'weakened,': 1, 'year': 1, 'honesty': 1, "world's": 1, 'decisions': 1, 'instead': 1, '[it]."': 1, 'perils': 1, 'storms': 1, 'costly,': 1, 'warming': 1, 'ages.': 1, 'borders,': 1, 'rule': 1, 'passed.': 1, 'reach': 1, 'emanates': 1, 'data': 1, 'depends': 1, 'country,': 1, 'services': 1, 'understood.': 1, 'then': 1, 'timeless': 1, 'roll': 1, 'resources': 1, "children's": 1, 'worldly': 1, 'moments,': 1, 'christians': 1, 'political': 1, 'together.': 1, 'leaders': 1, 'foundation': 1, 'ill.': 1, 'grandest': 1, 'band': 1, 'birth': 1, 'individual': 1, 'real.': 1, 'whisper': 1, 'charity,': 1, 'doubt,': 1, 'here': 1, 'universities': 1, 'sturdy': 1, 'end.': 1, 'celebration': 1, 'choose': 1, 'size': 1, 'met.': 1, 'colleges': 1, 'promises,': 1, 'risk-takers,': 1, 'everywhere': 1, 'united,': 1, 'eyes': 1, 'themselves.': 1, 'surely': 1, 'happiness.': 1, 'many.': 1, 'law': 1, 'chapter': 1, 'wage,': 1, 'qualities': 1, 'settled': 1, 'whip,': 1, 'fellow': 1, 'shaped': 1, 'people,': 1, 'span': 1, 'hand': 1, 'corruption': 1, 'god-given': 1, 'transition.': 1, 'cause,': 1, 'history;': 1, 'business': 1, 'consider': 1, 'defeat': 1, 'action,': 1, 'pick': 1, 'mall;': 1, 'price': 1, 'system': 1, 'gladly,': 1, 'fought': 1, 'generosity': 1, 'determination': 1, 'expedience': 1, 'towards': 1, 'delivered': 1, 'example,': 1, 'words.': 1, 'use': 1, 'grace': 1, 'decides': 1, 'governments': 1, 'woman': 1, 'held': 1, 'hours': 1, 'further': 1, 'if': 1, 'pledge': 1, 'sun': 1, 'remembrance': 1, 'conflict': 1, 'storm': 1, 'character': 1, 'patchwork': 1, 'scarcely': 1, 'shifted': 1, 'local': 1, 'protecting': 1, 'grids': 1, 'easily': 1, 'threats': 1, 'swift.': 1, 'relative': 1, "parent's": 1, 'spend': 1, 'responsibility': 1, 'side': 1, 'goods': 1, 'ultimately': 1, 'destiny.': 1, 'memories': 1, 'nations,': 1, 'measure': 1, 'short-cuts': 1, 'suffering': 1, 'good.': 1, 'patrol': 1, 'childish': 1, 'harness': 1, 'apologize': 1, 'off,': 1, 'kindness': 1, 'forebears': 1, 'free,': 1, 'snow': 1, 'aims': 1, 'swill': 1, 'strength,': 1, 'instruments': 1, 'tanks,': 1, 'would': 1, 'quality': 1, 'obscure': 1, 'raise': 1, 'lay': 1, 'language': 1, 'hatreds': 1, 'citizenship.': 1, 'justness': 1, 'forward': 1, 'manage': 1, 'fist.': 1, 'greed': 1, 'lash': 1, 'doers,': 1, 'stranger': 1, 'time.': 1, 'shape': 1, 'ushering': 1, 'country': 1, 'hindus,': 1, 'year.': 1, 'raging': 1, 'set': 1, 'choice': 1, 'please.': 1, 'interests': 1, 'collective': 1, 'fate.': 1, 'nations.': 1, 'then,': 1, 'alliances': 1, 'month,': 1, 'outcome': 1, 'nation.': 1, 'hour': 1, 'earth;': 1, 'flow;': 1, 'wisely,': 1, 'generate': 1, 'culture,': 1, 'dignity.': 1, 'act,': 1, 'traveled': 1, 'itself;': 1, 'non-believers.': 1, 'sow': 1, 'ready': 1, 'minds': 1, 'prudent': 1, 'watchful': 1, 'so,': 1, 'tirelessly': 1, 'coldest': 1, 'accept,': 1, 'worn-out': 1, 'deserve': 1, 'nation,': 1, 'cynics': 1, 'civil': 1, 'reject': 1, 'prosperity,': 1, 'equal,': 1, 'very': 1, 'vision': 1, 'been;': 1, 'purpose': 1, 'tell': 1, 'horizon': 1, 'virtue': 1, 'levees': 1, 'tolerate': 1, 'ago': 1, 'give': 1, 'threat,': 1, 'restraint.': 1, 'judge': 1, 'friends': 1, 'raw': 1, 'peoples': 1, 'profound,': 1, 'build,': 1, 'met': 1, 'city': 1, 'capacity': 1, 'pat,': 1, 'oath': 1, 'defense.': 1, 'creed,': 1, 'bestowed,': 1, 'chosen': 1, 'ours': 1, 'far-reaching': 1, 'smaller,': 1, 'clouds': 1, 'dust': 1, 'expand': 1, 'sights.': 1, 'emerged': 1, 'till': 1, 'specter': 1, 'refused': 1, 'forward.': 1, 'look,': 1, 'ills': 1, 'loyalty': 1, 'lost,': 1, 'sahn.': 1, 'reminded': 1, 'fear': 1, 'soon': 1, 'world;': 1, 'labor': 1, 'stained': 1, 'huddled': 1, 'digital': 1, 'alarmed': 1, 'unity': 1, 'sacrifices': 1, 'regard': 1, 'no,': 1, 'cars': 1, 'retirement': 1, 'achieve': 1, 'works': 1, 'indifference': 1, 'plans.': 1, 'progress': 1, 'shed,': 1, 'sake.': 1, 'roads': 1, 'united': 1, 'enjoy': 1, 'arlington': 1, 'ourselves,': 1, 'people:': 1, 'dollars': 1, 'gettysburg,': 1, 'we,': 1, 'currents,': 1, 'satisfying': 1, 'cut': 1, 'terror': 1, 'hungry': 1, 'dying': 1, 'bold': 1, 'some,': 1, 'endure': 1, 'finally': 1, 'bodies': 1, 'blame': 1, 'tested': 1, 'nurture': 1, 'interest': 1, 'virtue,': 1, 'iraq': 1, 'understanding': 1, 'adversaries': 1, 'few': 1, 'president': 1, 'live': 1, 'programs': 1, 'responsibly': 1, 'life,': 1, 'expanded': 1, 'helps': 1, 'state': 1, 'hours.': 1, 'gather': 1, 'spin': 1, 'heritage': 1, 'sacred': 1, 'ideals.': 1, 'hard-earned': 1, 'curiosity,': 1, 'changed,': 1, 'faithful': 1, 'keepers': 1, 'generation,': 1, 'yes,': 1, 'forge': 1, 'things.': 1, 'play': 1, 'globe': 1, 'bad': 1, 'short,': 1, 'job': 1, 'stairway': 1, 'decent': 1, 'consequence': 1, 'depended': 1, 'smoke,': 1, "public's": 1, 'entitle': 1, 'pursue': 1, 'productive': 1, 'skill': 1, 'saw': 1}
{'the': 136, 'and': 111, 'of': 82, 'to': 71, 'our': 68, 'we': 59, 'that': 49, 'a': 46, 'is': 36, 'in': 26, 'this': 24, 'for': 23, 'are': 22, 'but': 20, '--': 17, 'on': 17, 'it': 17, 'they': 17, 'will': 17, 'not': 16, 'have': 15, 'has': 14, 'us': 14, 'with': 13, 'who': 13, 'can': 13, 'be': 12, 'as': 11, 'or': 11, 'those': 11, '(applause.)': 11, 'nation': 10, 'you': 10, 'their': 10, 'us,': 9, 'these': 9, 'new': 9, 'by': 8, 'every': 8, 'so': 8, 'because': 8, 'must': 8, 'its': 8, 'all': 8, 'than': 8, 'what': 8, 'been': 7, 'at': 7, 'when': 7, 'too': 6, 'less': 6, 'no': 6, 'cannot': 6, 'common': 6, 'let': 6, 'now': 5, 'know': 5, 'time': 5, 'from': 5, 'only': 5, 'people': 5, 'nor': 5, 'was': 5, 'before': 4, 'america': 4, 'long': 4, 'seek': 4, 'more': 4, 'men': 4, 'women': 4, 'greater': 4, 'work': 4, 'meet': 4, 'whether': 4, 'power': 4, 'through': 4, 'which': 4, 'i': 3, 'today': 3, 'words': 3, 'carried': 3, 'founding': 3, 'generation': 3, 'crisis': 3, 'economy': 3, 'hard': 3, 'across': 3, 'say': 3, 'day,': 3, 'hope': 3, 'over': 3, 'come': 3, 'an': 3, 'journey': 3, 'things': 3, 'up': 3, 'were': 3, 'most': 3, 'last': 3, 'there': 3, 'question': 3, 'where': 3, 'do': 3, 'between': 3, 'force': 3, 'just': 3, 'them': 3, 'father': 3, 'future': 3, 'once': 3, 'spirit': 3, 'you.': 3, 'shall': 3, 'your': 3, 'upon': 3, 'may': 3, 'god': 3, 'my': 2, 'stand': 2, 'trust': 2, 'thank': 2, 'service': 2, '(applause)': 2, 'cooperation': 2, 'throughout': 2, 'americans': 2, 'taken': 2, 'oath.': 2, 'prosperity': 2, 'still': 2, 'waters': 2, 'peace.': 2, 'ideals': 2, 'war': 2, 'part': 2, 'also': 2, 'make': 2, 'age.': 2, 'jobs': 2, 'health': 2, 'care': 2, 'schools': 2, 'fail': 2, 'many': 2, 'each': 2, 'day': 2, 'planet.': 2, 'confidence': 2, "america's": 2, 'lower': 2, 'challenges': 2, 'face': 2, 'america:': 2, 'end': 2, 'false': 2, 'far': 2, 'remain': 2, 'enduring': 2, 'better': 2, 'promise': 2, 'greatness': 2, 'understand': 2, 'never': 2, 'one': 2, 'path': 2, 'work,': 2, 'some': 2, 'life.': 2, 'west,': 2, 'earth.': 2, 'like': 2, 'again': 2, 'might': 2, 'ambitions,': 2, 'wealth': 2, 'workers': 2, 'today,': 2, 'ourselves': 2, 'begin': 2, 'america.': 2, 'calls': 2, 'lines': 2, 'feed': 2, "we'll": 2, 'restore': 2, 'do.': 2, 'big': 2, 'longer': 2, 'government': 2, 'find': 2, 'answer': 2, 'light': 2, 'market': 2, 'freedom': 2, 'without': 2, 'out': 2, 'success': 2, 'extend': 2, 'willing': 2, 'faced': 2, 'charter': 2, 'man': 2, 'generations.': 2, 'world,': 2, 'small': 2, 'friend': 2, 'child': 2, 'peace': 2, 'grows': 2, 'even': 2, 'old': 2, 'back': 2, 'way': 2, 'stronger': 2, 'world': 2, 'role': 2, 'era': 2, 'mutual': 2, 'remember': 2, 'brave': 2, 'something': 2, 'willingness': 2, 'meaning': 2, 'moment': 2, 'do,': 2, 'faith': 2, 'american': 2, 'take': 2, 'rather': 2, 'courage': 2, 'new.': 2, 'duties': 2, 'knowledge': 2, 'nothing': 2, 'why': 2, 'children': 2, 'icy': 2, 'forth': 2, 'did': 2, 'bless': 2, 'fellow': 1, 'citizens:': 1, 'here': 1, 'humbled': 1, 'task': 1, 'grateful': 1, "you've": 1, 'bestowed,': 1, 'mindful': 1, 'sacrifices': 1, 'borne': 1, 'ancestors.': 1, 'president': 1, 'bush': 1, 'his': 1, 'well': 1, 'generosity': 1, 'he': 1, 'shown': 1, 'transition.': 1, 'forty-four': 1, 'presidential': 1, 'spoken': 1, 'during': 1, 'rising': 1, 'tides': 1, 'yet,': 1, 'often,': 1, 'oath': 1, 'amidst': 1, 'gathering': 1, 'clouds': 1, 'raging': 1, 'storms.': 1, 'moments,': 1, 'simply': 1, 'skill': 1, 'vision': 1, 'high': 1, 'office,': 1, 'we,': 1, 'people,': 1, 'remained': 1, 'faithful': 1, 'forebears': 1, 'true': 1, 'documents.': 1, 'been;': 1, 'americans.': 1, 'midst': 1, 'well+++': 1, 'understood.': 1, 'against': 1, 'far-reaching': 1, 'network': 1, 'violence': 1, 'hatred.': 1, 'badly': 1, 'weakened,': 1, 'consequence': 1, 'greed': 1, 'irresponsibility': 1, 'some,': 1, 'collective': 1, 'failure': 1, 'choices': 1, 'prepare': 1, 'homes': 1, 'lost,': 1, 'shed,': 1, 'businesses': 1, 'shuttered.': 1, 'costly,': 1, 'brings': 1, 'further': 1, 'evidence': 1, 'ways': 1, 'use': 1, 'energy': 1, 'strengthen': 1, 'adversaries': 1, 'threaten': 1, 'indicators': 1, 'crisis,': 1, 'subject': 1, 'data': 1, 'statistics.': 1, 'measurable,': 1, 'profound,': 1, 'sapping': 1, 'land;': 1, 'nagging': 1, 'fear': 1, 'decline': 1, 'inevitable,': 1, 'next': 1, 'sights.': 1, 'real.': 1, 'serious': 1, 'many.': 1, 'met': 1, 'easily': 1, 'short': 1, 'span': 1, 'time.': 1, 'met.': 1, 'gather': 1, 'chosen': 1, 'fear,': 1, 'unity': 1, 'purpose': 1, 'conflict': 1, 'discord.': 1, 'proclaim': 1, 'petty': 1, 'grievances': 1, 'promises,': 1, 'recriminations': 1, 'worn-out': 1, 'dogmas': 1, 'strangled': 1, 'politics.': 1, 'young': 1, 'nation.': 1, 'scripture,': 1, 'set': 1, 'aside': 1, 'childish': 1, 'things.': 1, 'reaffirm': 1, 'spirit;': 1, 'choose': 1, 'history;': 1, 'carry': 1, 'forward': 1, 'precious': 1, 'gift,': 1, 'noble': 1, 'idea': 1, 'passed': 1, 'generation:': 1, 'god-given': 1, 'equal,': 1, 'free,': 1, 'deserve': 1, 'chance': 1, 'pursue': 1, 'full': 1, 'measure': 1, 'happiness.': 1, 'reaffirming': 1, 'given.': 1, 'earned.': 1, 'short-cuts': 1, 'settling': 1, 'less.': 1, 'faint-hearted,': 1, 'prefer': 1, 'leisure': 1, 'pleasures': 1, 'riches': 1, 'fame.': 1, 'rather,': 1, 'risk-takers,': 1, 'doers,': 1, 'makers': 1, 'celebrated,': 1, 'often': 1, 'obscure': 1, 'labor': 1, 'rugged': 1, 'towards': 1, 'freedom.': 1, 'packed': 1, 'few': 1, 'worldly': 1, 'possessions': 1, 'traveled': 1, 'oceans': 1, 'search': 1, 'toiled': 1, 'sweatshops,': 1, 'settled': 1, 'endured': 1, 'lash': 1, 'whip,': 1, 'plowed': 1, 'fought': 1, 'died': 1, 'places': 1, 'concord': 1, 'gettysburg,': 1, 'normandy': 1, 'khe': 1, 'sahn.': 1, 'struggled': 1, 'sacrificed': 1, 'worked': 1, 'till': 1, 'hands': 1, 'raw': 1, 'live': 1, 'saw': 1, 'bigger': 1, 'sum': 1, 'individual': 1, 'differences': 1, 'birth': 1, 'faction.': 1, 'continue': 1, 'today.': 1, 'prosperous,': 1, 'powerful': 1, 'productive': 1, 'began.': 1, 'minds': 1, 'inventive,': 1, 'goods': 1, 'services': 1, 'needed': 1, 'week,': 1, 'month,': 1, 'year.': 1, 'capacity': 1, 'remains': 1, 'undiminished.': 1, 'standing': 1, 'pat,': 1, 'protecting': 1, 'narrow': 1, 'interests': 1, 'putting': 1, 'off': 1, 'unpleasant': 1, 'decisions': 1, 'surely': 1, 'passed.': 1, 'starting': 1, 'pick': 1, 'up,': 1, 'dust': 1, 'off,': 1, 'remaking': 1, 'everywhere': 1, 'look,': 1, 'done.': 1, 'state': 1, 'action,': 1, 'bold': 1, 'swift.': 1, 'act,': 1, 'create': 1, 'jobs,': 1, 'lay': 1, 'foundation': 1, 'growth.': 1, 'build': 1, 'roads': 1, 'bridges,': 1, 'electric': 1, 'grids': 1, 'digital': 1, 'commerce': 1, 'bind': 1, 'together.': 1, 'science': 1, 'rightful': 1, 'place,': 1, 'wield': 1, "technology's": 1, 'wonders': 1, 'raise': 1, "care's": 1, 'quality': 1, 'cost.': 1, 'harness': 1, 'sun': 1, 'winds': 1, 'soil': 1, 'fuel': 1, 'cars': 1, 'run': 1, 'factories.': 1, 'transform': 1, 'colleges': 1, 'universities': 1, 'demands': 1, 'now,': 1, 'scale': 1, 'suggest': 1, 'system': 1, 'tolerate': 1, 'plans.': 1, 'memories': 1, 'short,': 1, 'forgotten': 1, 'country': 1, 'already': 1, 'done,': 1, 'free': 1, 'achieve': 1, 'imagination': 1, 'joined': 1, 'purpose,': 1, 'necessity': 1, 'courage.': 1, 'cynics': 1, 'ground': 1, 'shifted': 1, 'beneath': 1, 'them,': 1, 'stale': 1, 'political': 1, 'arguments': 1, 'consumed': 1, 'apply.': 1, 'ask': 1, 'small,': 1, 'works': 1, 'helps': 1, 'families': 1, 'decent': 1, 'wage,': 1, 'afford,': 1, 'retirement': 1, 'dignified.': 1, 'yes,': 1, 'intend': 1, 'move': 1, 'forward.': 1, 'no,': 1, 'programs': 1, 'end.': 1, 'manage': 1, "public's": 1, 'dollars': 1, 'held': 1, 'account,': 1, 'spend': 1, 'wisely,': 1, 'reform': 1, 'bad': 1, 'habits,': 1, 'business': 1, 'then': 1, 'vital': 1, 'government.': 1, 'good': 1, 'ill.': 1, 'generate': 1, 'expand': 1, 'unmatched.': 1, 'reminded': 1, 'watchful': 1, 'eye,': 1, 'spin': 1, 'control.': 1, 'prosper': 1, 'favors': 1, 'prosperous.': 1, 'always': 1, 'depended': 1, 'size': 1, 'gross': 1, 'domestic': 1, 'product,': 1, 'reach': 1, 'prosperity,': 1, 'ability': 1, 'opportunity': 1, 'heart': 1, 'charity,': 1, 'surest': 1, 'route': 1, 'good.': 1, 'defense,': 1, 'reject': 1, 'choice': 1, 'safety': 1, 'ideals.': 1, 'fathers': 1, 'fathers,': 1, 'perils': 1, 'scarcely': 1, 'imagine,': 1, 'drafted': 1, 'assure': 1, 'rule': 1, 'law': 1, 'rights': 1, 'expanded': 1, 'blood': 1, 'give': 1, 'expedience': 1, 'sake.': 1, 'so,': 1, 'other': 1, 'peoples': 1, 'governments': 1, 'watching': 1, 'grandest': 1, 'capitals': 1, 'village': 1, 'born,': 1, 'nation,': 1, 'man,': 1, 'woman': 1, 'seeks': 1, 'dignity.': 1, 'ready': 1, 'lead': 1, 'more.': 1, 'recall': 1, 'earlier': 1, 'generations': 1, 'down': 1, 'fascism': 1, 'communism': 1, 'missiles': 1, 'tanks,': 1, 'sturdy': 1, 'alliances': 1, 'convictions.': 1, 'understood': 1, 'alone': 1, 'protect': 1, 'does': 1, 'entitle': 1, 'please.': 1, 'instead': 1, 'knew': 1, 'prudent': 1, 'use;': 1, 'security': 1, 'emanates': 1, 'justness': 1, 'cause,': 1, 'example,': 1, 'tempering': 1, 'qualities': 1, 'humility': 1, 'restraint.': 1, 'keepers': 1, 'legacy.': 1, 'guided': 1, 'principles': 1, 'threats': 1, 'demand': 1, 'effort,': 1, 'understanding': 1, 'nations.': 1, 'responsibly': 1, 'leave': 1, 'iraq': 1, 'forge': 1, 'hard-earned': 1, 'afghanistan.': 1, 'friends': 1, 'former': 1, 'foes,': 1, 'tirelessly': 1, 'lessen': 1, 'nuclear': 1, 'threat,': 1, 'roll': 1, 'specter': 1, 'warming': 1, 'apologize': 1, 'life,': 1, 'waver': 1, 'defense.': 1, 'advance': 1, 'aims': 1, 'inducing': 1, 'terror': 1, 'slaughtering': 1, 'innocents,': 1, 'broken': 1, 'outlast': 1, 'defeat': 1, 'patchwork': 1, 'heritage': 1, 'strength,': 1, 'weakness.': 1, 'christians': 1, 'muslims,': 1, 'jews': 1, 'hindus,': 1, 'non-believers.': 1, 'shaped': 1, 'language': 1, 'culture,': 1, 'drawn': 1, 'earth;': 1, 'tasted': 1, 'bitter': 1, 'swill': 1, 'civil': 1, 'segregation,': 1, 'emerged': 1, 'dark': 1, 'chapter': 1, 'united,': 1, 'help': 1, 'believe': 1, 'hatreds': 1, 'someday': 1, 'pass;': 1, 'tribe': 1, 'soon': 1, 'dissolve;': 1, 'smaller,': 1, 'humanity': 1, 'reveal': 1, 'itself;': 1, 'play': 1, 'ushering': 1, 'muslim': 1, 'forward,': 1, 'based': 1, 'interest': 1, 'respect.': 1, 'leaders': 1, 'around': 1, 'globe': 1, 'sow': 1, 'conflict,': 1, 'blame': 1, "society's": 1, 'ills': 1, 'judge': 1, 'build,': 1, 'destroy.': 1, 'cling': 1, 'corruption': 1, 'deceit': 1, 'silencing': 1, 'dissent,': 1, 'wrong': 1, 'side': 1, 'history,': 1, 'hand': 1, 'if': 1, 'unclench': 1, 'fist.': 1, 'poor': 1, 'nations,': 1, 'pledge': 1, 'alongside': 1, 'farms': 1, 'flourish': 1, 'clean': 1, 'flow;': 1, 'nourish': 1, 'starved': 1, 'bodies': 1, 'hungry': 1, 'minds.': 1, 'nations': 1, 'ours': 1, 'enjoy': 1, 'relative': 1, 'plenty,': 1, 'afford': 1, 'indifference': 1, 'suffering': 1, 'outside': 1, 'borders,': 1, 'consume': 1, "world's": 1, 'resources': 1, 'regard': 1, 'effect.': 1, 'changed,': 1, 'change': 1, 'it.': 1, 'consider': 1, 'unfolds': 1, 'humble': 1, 'gratitude': 1, 'very': 1, 'hour': 1, 'patrol': 1, 'far-off': 1, 'deserts': 1, 'distant': 1, 'mountains.': 1, 'tell': 1, 'fallen': 1, 'heroes': 1, 'lie': 1, 'arlington': 1, 'whisper': 1, 'ages.': 1, 'honor': 1, 'guardians': 1, 'liberty,': 1, 'embody': 1, 'themselves.': 1, 'yet': 1, 'moment,': 1, 'define': 1, 'generation,': 1, 'precisely': 1, 'inhabit': 1, 'all.': 1, 'much': 1, 'ultimately': 1, 'determination': 1, 'relies.': 1, 'kindness': 1, 'stranger': 1, 'levees': 1, 'break,': 1, 'selflessness': 1, 'would': 1, 'cut': 1, 'hours': 1, 'see': 1, 'lose': 1, 'job': 1, 'sees': 1, 'darkest': 1, 'hours.': 1, "firefighter's": 1, 'storm': 1, 'stairway': 1, 'filled': 1, 'smoke,': 1, "parent's": 1, 'nurture': 1, 'finally': 1, 'decides': 1, 'fate.': 1, 'instruments': 1, 'values': 1, 'depends': 1, 'honesty': 1, 'fair': 1, 'play,': 1, 'tolerance': 1, 'curiosity,': 1, 'loyalty': 1, 'patriotism': 1, 'old.': 1, 'true.': 1, 'quiet': 1, 'progress': 1, 'history.': 1, 'demanded,': 1, 'then,': 1, 'return': 1, 'truths.': 1, 'required': 1, 'responsibility': 1, 'recognition': 1, 'ourselves,': 1, 'world;': 1, 'grudgingly': 1, 'accept,': 1, 'seize': 1, 'gladly,': 1, 'firm': 1, 'satisfying': 1, 'spirit,': 1, 'defining': 1, 'character': 1, 'giving': 1, 'difficult': 1, 'task.': 1, 'price': 1, 'citizenship.': 1, 'source': 1, 'shape': 1, 'uncertain': 1, 'destiny.': 1, 'liberty': 1, 'creed,': 1, 'race': 1, 'join': 1, 'celebration': 1, 'magnificent': 1, 'mall;': 1, 'whose': 1, '60': 1, 'years': 1, 'ago': 1, 'served': 1, 'local': 1, 'restaurant': 1, 'sacred': 1, 'mark': 1, 'remembrance': 1, 'how': 1, 'traveled.': 1, 'year': 1, 'birth,': 1, 'coldest': 1, 'months,': 1, 'band': 1, 'patriots': 1, 'huddled': 1, 'dying': 1, 'campfires': 1, 'shores': 1, 'river.': 1, 'capital': 1, 'abandoned.': 1, 'enemy': 1, 'advancing.': 1, 'snow': 1, 'stained': 1, 'blood.': 1, 'outcome': 1, 'revolution': 1, 'doubt,': 1, 'ordered': 1, 'read': 1, 'people:': 1, '"let': 1, 'told': 1, 'world...that': 1, 'depth': 1, 'winter,': 1, 'virtue': 1, 'could': 1, 'survive...': 1, 'city': 1, 'country,': 1, 'alarmed': 1, 'danger,': 1, 'came': 1, '[it]."': 1, 'dangers,': 1, 'winter': 1, 'hardship,': 1, 'timeless': 1, 'words.': 1, 'virtue,': 1, 'currents,': 1, 'endure': 1, 'storms': 1, 'come.': 1, 'said': 1, "children's": 1, 'tested': 1, 'refused': 1, 'end,': 1, 'turn': 1, 'falter;': 1, 'eyes': 1, 'fixed': 1, 'horizon': 1, "god's": 1, 'grace': 1, 'great': 1, 'gift': 1, 'delivered': 1, 'safely': 1, 'united': 1, 'states': 1}

python之路(1)_重要函数使用相关推荐

  1. 初识python评课稿_开平方函数 python

    信息举报 时间:2021-02-05 本页为您甄选多篇描写开平方函数 python,开平方函数 python精选,开平方函数 python大全,有议论,叙事 ,想象等形式.文章字数有400字.600字 ...

  2. python非线性最小二乘拟合_非线性函数的最小二乘拟合——兼论Jupyter notebook中使用公式 [原创]...

    突然有个想法,利用机器学习的基本方法--线性回归方法,来学习一阶rc电路的阶跃响应,从而得到rc电路的结构特征--时间常数τ(即r*c).回答无疑是肯定的,但问题是怎样通过最小二乘法.正规方程,以更多 ...

  3. python做表格教程_表格函数教程

    表格存储触发函数计算示例之 Nodejs/Php/Java/C# Runtime 前言 函数计算(Function Compute)是一个事件驱动的服务,通过函数计算,用户无需管理服务器等运行情况,只 ...

  4. python输出字符串居中_字符串函数第一个大写以及字符串居中显示打印金字塔

    此课程与<清华编程高手.尹成.带你实战python入门>大体相同,只需购买其中的一门课程. 本课程由清华大学尹成老师录制,课程的特色在于讲解原理的同时引入了每个程序员都热衷的黑客技术.py ...

  5. Python中lambda表达式_匿名函数

    lambda表达式和匿名函数 lambda表达式 ​ lambda表达式可以用来声明匿名函数,实际生成一个函数对象. ​ lambda表达式只允许包含一个表达式,该表达式的计算结果就是函数的返回值. ...

  6. python模拟购物车流程_用函数模拟简单的购物车(Python)

    """ 购物车功能: a.引导用户输入金额 b.给用户展示所有的商品 c.引导用户输入需要进行的操作[添加 删除 结算购物车 退出] d.引导用户选择商品 e.引导用户输 ...

  7. python 字符串转日期_我总结的130页Python与机器学习之路V1.2.pdf,都是干货!

    告别枯燥,通过学习有趣的小例子,扎实而系统的入门Python,从菜鸟到大师,个人觉得这是很靠谱的一种方法.通过一个又一个的小例子,真正领悟Python之强大,之简洁,真正做到高效使用Python. 两 ...

  8. cisco 模拟器安装及交换机的基本配置实验心得_网络工程师的Python之路 -- 自动监测网络配置变化...

    版权声明:我已加入"维权骑士"(http://rightknights.com)的版权保护计划,所有知乎专栏"网路行者"下的文章均为我本人(知乎ID:弈心)原创 ...

  9. python代码设计测试用例_《带你装B,带你飞》pytest成神之路2- 执行用例规则和pycharm运行的三种姿态...

    1. 简介 今天北京下的雪好大好美啊!!!哎呀,忘记拍照片了,自己想象一下吧.言归真传,今天还是开始pytest的学习和修炼,上一篇写完后群里反响各式各样的,几家欢乐几家愁,有的高兴说自己刚好要用到了 ...

最新文章

  1. 解决sql2014的distribution系统库distribution.mdf过大问题
  2. 不谈面试题,谈谈面试官喜欢见到的特质!
  3. hongyi lee 作业1
  4. 薛其坤、向涛两位院士,担任这家研究院联合院长
  5. (转)flash位图缓存cacheAsBitmap
  6. C# 往excel出力数据
  7. cbrgen和setdest数据流生成
  8. 10款优秀的跨平台免费生产力软件[转]
  9. c#获取对象的唯一标识_DDD领域驱动设计实战 - 创建实体身份标识的常用策略
  10. 每年圣诞海报是躲不掉的,趁时间还来得及,看看这里PSD分层模板
  11. c 程序设计语言第1 3部分,《C程序设计语言(第2版新版)典藏版》 —1.3 for语句...
  12. PhpStorm快捷方式
  13. wsl使用可视化界面_WSL 科学计算〇 | 适合计算化学的环境配置
  14. 常见计算机蓝屏代码,常见电脑蓝屏代码大全
  15. proxy_cfw全局代理_浏览器代理配置(chromium based(edge)/firefox/IDM)
  16. 生产线平衡算法matlab,装配生产线任务平衡问题的遗传算法MATLAB源代码
  17. 数据网络卡顿怎么处理_电信数据网络卡顿怎么办 电信iptv卡顿解决方法
  18. AI Illustrator 中钢笔工具在绘制过程中如何使用
  19. gyb的常用lazyCopy
  20. 公历农历显示节日节气星期等万年历

热门文章

  1. matlab 差分方程的解(解答qq网友)
  2. 自学Web前端的第14天
  3. Vue项目中 sass安装
  4. 服装ERP应用(12)-某公司的服装(鞋业)ERP解决方案
  5. springboot 配置RedisTemplate 报:Field redisTemplate in XXX required a bean of type 'org.springframework
  6. 3D软件中怎么绘制杯子?
  7. Android实时音视频如何快速实现回声消除
  8. FL Studio第 24 个年头:Image-Line 升级 FL Studio 21 音乐工作站
  9. 数学分析:有理数的稠密性证明
  10. 现货黄金规则如此简单吗?