利用collections-Counter获取list有序去重复
今天在学习Python中的collections模块的Counter()时,发现其可以不改变原有顺序有序生成元素的计数字典,考虑可以通过此来获取list的有序去重复。
代码如下:
#!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]
目前由于未予大数据量实际应用,暂未发现有什么负面影响及注意问题。