python利用collections-Counter()获取list有序去重复

今天在学习Python中的collections模块的Counter()时,发现其可以有序生成元素的计数字典,考虑可以通过此来获取list的有序去重复。
其与set功能类似,要求元素为hashable,如果元素为list,则需要转化为tuple等在进行执行。
代码如下:

#!usr/bin/env python  
#encoding:utf-8  
>>>from collections import Counter
>>> list1 = [1,1,1,1,1,1,2,3,4,4,5,1,2,9,3,4,6]
>>> list(Counter(list1))
[1, 2, 3, 4, 5, 9, 6]
>>> one_list=[56,7,4,23,56,9,0,56,12,3,56,34,45,5,6,56]
>>> list(Counter(one_list))
[56, 7, 4, 23, 9, 0, 12, 3, 34, 45, 5, 6]

目前由于未予大数据量实际应用,暂未发现有什么负面影响及注意问题。

同步发于CSDN:https://blog.csdn.net/cced1934/article/details/104118278

你可能感兴趣的:(python利用collections-Counter()获取list有序去重复)