在Python中對清單中元素去重複有以下幾種方法:
方法一:
用內建函數set: (推薦:python中set是什麼意思)
list1 = [1, 2, 3, 3, 4, 4, 5, 6, 6, 6, 7, 8, 9] list2 = list(set(list1)) print(list2)
方法二:
遍歷去除重複(建議:在Python中遍歷列表的方法有哪些)
list1 = [1, 2, 3, 3, 4, 4, 5, 6, 6, 6, 7, 8, 9] list2=[] for i in list1: if not i in list2: list2.append(i) print(list2)
清單推導式
list1 = [1, 2, 3, 3, 4, 4, 5, 6, 6, 6, 7, 8, 9] list2=[] [list2.append(i) for i in list1 if not i in list2]
更多Python相關技術文章,請造訪Python教學欄位進行學習!
以上是怎麼對列表中元素去重複的詳細內容。更多資訊請關注PHP中文網其他相關文章!