How to count the frequency of the elements in an unordered list?

后端 未结 30 2917
时光说笑
时光说笑 2020-11-22 02:37

I need to find the frequency of elements in an unordered list

a = [1,1,1,1,2,2,2,2,3,3,4,5,5]

output->

b =         


        
30条回答
  •  失恋的感觉
    2020-11-22 03:09

    num=[3,2,3,5,5,3,7,6,4,6,7,2]
    print ('\nelements are:\t',num)
    count_dict={}
    for elements in num:
        count_dict[elements]=num.count(elements)
    print ('\nfrequency:\t',count_dict)
    

提交回复
热议问题