码迷,mamicode.com
首页 > 编程语言 > 详细

python: remove the duplicates in a list

时间:2016-12-26 00:28:14      阅读:310      评论:0      收藏:0      [点我收藏+]

标签:pytho   div   style   list   pre   nbsp   move   dup   span   

>>> t = [1, 2, 3, 1, 2, 5, 6, 7, 8]
>>> t
[1, 2, 3, 1, 2, 5, 6, 7, 8]
>>> list(set(t))
[1, 2, 3, 5, 6, 7, 8]
>>> s = [1, 2, 3]
>>> list(set(t) - set(s))
[8, 5, 6, 7]

 

python: remove the duplicates in a list

标签:pytho   div   style   list   pre   nbsp   move   dup   span   

原文地址:http://www.cnblogs.com/qingyuanjushi/p/6220846.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!