一、对列表去重 1.用循环查找的方式 li = [1,2,3,3,4,2,3,4,5,6,1] news_li = [] for i in li: if i not in news_li: news_li.append(i) print (news_li) 输出: [1, 2, 3, 4, 5, 6]2.用集合的特性set() li1 = [1,4,3,3,4,2,3,4,5,6,1] new_li1 = list(set(li1)) 输出: [1, 2, 3, 4, 5, 6]3.使用itertools模块的grouby方法 import itertools li2 ...