-*- # coding = utf-8 -*-
import collections
import os
with open(abc.text)as file1:#打开文本文件
str1=file1.read().split(' ')#将文章按照空格划分开
print ("原文本:\n %s",str1)#导出原文本
print("各单词出现的次数: \n %s",collections.Counter(str1))#统计各个单词出现的次数
print collections.Counter(str1)['a']#以字典的形式存储,每个字符对应的键值就是在文本中出现的次数