python学习|python列表去重

# 使用set集合去重 ''' a = list(set(a)) ''' # 列表去重函数 def list_not_rep(l): temp = [] for i in l: if i not in temp: temp.append(i) return tempif __name__ == "__main__": a = [3,4,2,6,9,4,3,5,8,5,9] print("原列表:%s"%a) print("函数去重后:%s"%list_not_rep(a)) print("set去重后:%s"%list(set(a)))

    推荐阅读