python面试题之Python代码实现

2023-01-31 00:01:26 python 代码 面试题
>>> l = [1,1,2,3,4,5,4]
>>> list(set(l))
[1, 2, 3, 4, 5]
或者
d = {}
for x in mylist:
    d[x] = 1
mylist = list(d.keys())

所属网站分类: 面试经典 > python


作者:外星人入侵

原文链接: Http://www.Pythonheidong.com/blog/article/25/

来源:python黑洞网 www.pythonheidong.com

 

相关文章