码迷,mamicode.com
首页 > 编程语言 > 详细

Python-列表元素出现次数及频率

时间:2019-10-24 11:40:41      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:def   else   hello   key   span   key值   字典   round   print   

思路:列表中元素,做字典的key值,
字典的key对应的values是出现的次数



def pin(t):

d=dict()###空字典
lenth=len(t)
for i in t:

if i not in d:
d[i]=1
else:
d[i]+=1

for line in d: ##算出key在列表中出现的频率
val=d[line]/lenth
print(line,‘在列表中出现的评率为‘,(round(val,2))) ##round 是val是小数位2位

return d

t=[1,2,3,2,2,‘h‘,‘a‘,‘hello‘,‘hello‘]
print(pin(t))

Python-列表元素出现次数及频率

标签:def   else   hello   key   span   key值   字典   round   print   

原文地址:https://www.cnblogs.com/W-Devil/p/11731167.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!