python利用字典特性来判断英文语句中单词出现次数

#统计单词出现次数
'''
 1.用户输入一段英文语句
 2.将用户输入的语句分割,并且创建一个空字典
 3.然后利用键值关系进行计算次数
'''

#用户输入
# talk is cheap show me the code show me the code
msg=input('请您输入英文句子:')

#分割成为列表
msg_list=msg.split()
dict_count={}
# print(msg_list)

#对分割后的列表循环放入字典中
for m in msg_list:
    if m not in dict_count :
        dict_count[m]=1#第一次不存在的话将存入,单词当做keys,数值当作values
    else:
        dict_count[m]=dict_count[m]+1
#print(dict_count)

# 显示查询结果
code=input('请输入您要查询的单词:')
print('{}出现过{}次.'.format(code,dict_count.get(code,0)))

#显示字典内容
#print(dict_count)
#循环获取
for letter ,count in dict_count.items():
    print(letter,count)

你可能感兴趣的:(大数据,python)