python清單如何去重?以下這篇文章就來跟大家介紹一下python列表去重的方法,希望對你們有幫助。 (推薦學習:python影片教學)
#python列表去重的方法:
##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()
li = [1,4,3,3,4,2,3,4,5,6,1] new_li = list(set(li)) print (new_li)輸出:
[1, 2, 3, 4, 5, 6]3、使用itertools模組的grouby方法
import itertools li = [1,4,3,3,4,2,3,4,5,6,1] li.sort() #排序 it = itertools.groupby(li) for k, g in it: print (k)#輸出:
1 2 3 4 5 64、使用keys()方式
li = [1,0,3,7,7,5] formatli = list({}.fromkeys(li).keys()) print (formatli)輸出:
[1, 0, 3, 7, 5]更多python相關技術知識,請造訪
python入門教學專欄學習!
以上是python列表如何去重?的詳細內容。更多資訊請關注PHP中文網其他相關文章!