VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • Python对列表去重的4种方法(2)

but,这样的代码不够简洁,不够高端

 

4. 按照索引再次排序

1
2
3
4
orgList = [1,0,3,7,7,5]
formatList = list(set(orgList))
formatList.sort(key=orgList.index)
print (formatList)

结果:

1
[1, 0, 3, 7, 5]
 


相关教程