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

python:列表的去重:两种方法的问题是:结果是没有保持原来的顺序。

时间:2019-12-01 13:58:55      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:orm   class   rom   list   org   print   for   str   两种   

列表的去重

1、使用set的特型,python的set和其他语言类似, 是一个无序不重复元素集

orgList = [1,0,3,7,7,5]
#list()方法是把字符串str或元组转成数组
formatList = list(set(orgList))
print (formatList)

2、使用keys()方法

orgList = [1,0,3,7,7,5]
#list()方法是把字符串str或元组转成数组
formatList = list({}.fromkeys(orgList).keys())
print (formatList)

python:列表的去重:两种方法的问题是:结果是没有保持原来的顺序。

标签:orm   class   rom   list   org   print   for   str   两种   

原文地址:https://www.cnblogs.com/zack-dong/p/11965496.html

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