标签: python
检查python列表中有多少种不同元素的pythonic方法是什么?像这样:
lst = [1, 1, 2, 2, 3, 3, 4, 4] s = set() for l in lst: s.add(l) result = list(s)