python怎麼去重?以下為大家介紹幾種python去重的方法:
方法一: 使用內建set方法去重
>>> lst1 = [2, 1, 3, 4, 1] >>> lst2 = list(set(lst1)) >>> print(lst2) [1, 2, 3, 4]
方法二: 使用字典中fromkeys()的方法來去重
>>> lst1 = [2, 1, 3, 4, 1] >>> lst2 = {}.fromkeys(lst1).keys() >>> print(lst2) dict_keys([2, 1, 3, 4])
相關推薦:《python影片教學》
方法三:使用常規方法來去重
>>> lst1 = [2, 1, 3, 4, 1] >>> temp = [] >>> for item in lst1: if not item in temp: temp.append(item) >>> print(temp) [2, 1, 3, 4]
方法四: 使用列表推導來去重
>>> lst1 = [2, 1, 3, 4, 1] >>> temp = [] >>> [temp.append(i) for i in lst1 if not i in temp] [None, None, None, None] >>> print(temp) [2, 1, 3, 4]
方法五: 使用sort函數來去重
>>> lst1 = [2, 1, 3, 4, 1] >>> lst2.sort(key=lst1.index) >>> print(lst2) [2, 1, 3, 4]
方法六: 使用sorted函數來去重
>>> lst1 = [2, 1, 3, 4, 1] >>> lst2 = sorted(set(lst1), key=lst1.index) >>> print(lst2) [2, 1, 3, 4]
備註:前面的幾種方法,有幾種是不能保證其順序的,例如用set()函數來處理!
如果要刪除清單清單中的重複項,則同樣可以用下面的幾種方法來處理
#>>> # 方法一:
>>> data = [2, 1, 3, 4, 1] >>> [item for item in data if data.count(item) == 1]
[2, 3, 4]
>>> # 方法二:
>>> data = [2, 1, 3, 4, 1] >>> list(filter(lambda x:data.count(x) == 1, data)) [2, 3, 4]
以上是python怎麼去重的詳細內容。更多資訊請關注PHP中文網其他相關文章!