st="New to Python or choosing between Python 2 and Python 3? Read Python 2 or Python 3"
list1=list(st.split(" "))
print(list1)
dict1=dict()
for i in list1:
if i in dict1:
dict1[i]=1
else:
dict1[i]+=1
print(sorted(dict1))
老是会报错keyerror,不知道为什么?
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
3条回答 默认 最新
- 菜猫小六 2021-12-07 10:38关注
盲猜一下,这是要统计单词出现的频率嘛。
如果这个词不在最后的字典中,那么把这个词添加进去,并且这个词的次数置1,如果在,那么这个词出现的次数+1。
题主把判断的条件搞反了。(如有异议,我是垃圾)st = "New to Python or choosing between Python 2 and Python 3? Read Python 2 or Python 3" list1 = list(st.split(" ")) print(list1) dict1 = dict() for i in list1: if i in dict1: dict1[i] += 1 else: dict1[i] = 1 print dict1
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
悬赏问题
- ¥15 wpf datagrid如何实现多层表头
- ¥15 为啥画版图在Run DRC会出现Connect Error?可我Calibre的hostname和计算机的hostname已经设置成一样的了。
- ¥20 网站后台使用极速模式非常的卡
- ¥20 Keil uVision5创建project没反应
- ¥15 mmseqs内存报错
- ¥15 vika文档如何与obsidian同步
- ¥15 华为手机相册里面的照片能够替换成自己想要的照片吗?
- ¥15 陆空双模式无人机飞控设置
- ¥15 sentaurus lithography
- ¥15 关于#linux#的问题:子进程1等待子进程A、B退出后退出(语言-c语言)