python 统计字符串中重复的字符,及统计数组中重复的元素

1、统计字符串中重复的字符
方法一:

str = 'jsjdfkjsjsdhfjjffdk'
list = list(str)
set = set(list)
dict{item:list.count(item) for item in list}

方法二:
待更新

2、统计列表中重复的元素
方法一

list = [2,4,3,4,2,'a','f','d','a']
set = set(list)
dict = {item:list.count(item)  for item in list}

方法二:
持续更新中

    原文作者:Leo_0626
    原文地址: https://www.jianshu.com/p/450ebc995a81
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞