首页 >

python去重方法 – python – 前端,老男孩python12

python egg,python 计算模块,python hash sort,python运维知识,python画月牙简单的,python currentthread,python安妮,python编程块,python epub 生成,python launcher安装,老男孩python12python去重方法 - python - 前端,老男孩python12

方法一: 使用内置set方法来去重

>>> lst1 = [2, 1, 3, 4, 1]

>>> lst2 = list(set(lst1))

>>> print(lst2)

[1, 2, 3, 4]

方法二: 使用字典中fromkeys()的方法来去重

>>> lst1 = [2, 1, 3, 4, 1]

>>> lst2 = {}.fromkeys(lst1).keys()

>>> print(lst2)

dict_keys([2, 1, 3, 4])

方法三: 使用常规方法来去重

>>> lst1 = [2, 1, 3, 4, 1]

>>> temp = []

>>> for item in lst1:

if not item in temp:

temp.append(item)

>>> print(temp)

[2, 1, 3, 4]

方法四: 使用列表推导来去重

>>> lst1 = [2, 1, 3, 4, 1]

>>> temp = []

>>> [temp.append(i) for i in lst1 if not i in temp]

[None, None, None, None]

>>> print(temp)

[2, 1, 3, 4]

方法五: 使用sort函数来去重

>>> lst1 = [2, 1, 3, 4, 1]

>>> lst2.sort(key=lst1.index)

>>> print(lst2)

[2, 1, 3, 4]

方法六: 使用sorted函数来去重

>>> lst1 = [2, 1, 3, 4, 1]

>>> lst2 = sorted(set(lst1), key=lst1.index)

>>> print(lst2)

[2, 1, 3, 4]


python去重方法 - python - 前端,老男孩python12
  • python怎么改变画笔坐标 - python - 前端,python批量修改文件内容
  • python怎么改变画笔坐标 - python - 前端,python批量修改文件内容 | python怎么改变画笔坐标 - python - 前端,python批量修改文件内容 ...

    python去重方法 - python - 前端,老男孩python12
  • python是一门高级计算机的语言吗 - python - 前端,python是开发语言吗
  • python是一门高级计算机的语言吗 - python - 前端,python是开发语言吗 | python是一门高级计算机的语言吗 - python - 前端,python是开发语言吗 ...

    python去重方法 - python - 前端,老男孩python12
  • python中语句太长用什么做续行符 - python - 前端,树莓派与液晶屏python
  • python中语句太长用什么做续行符 - python - 前端,树莓派与液晶屏python | python中语句太长用什么做续行符 - python - 前端,树莓派与液晶屏python ...