gpt4 book ai didi

python - 在python中删除列表中的重复项

转载 作者:太空宇宙 更新时间:2023-11-04 06:52:55 26 4
gpt4 key购买 nike

假设我有一个列表

['a','man', 'and', 'a', 'woman']

如何删除重复的“a”,以便它只会是:

['a','man', 'and', 'woman']

最佳答案

保持秩序:

>>> from collections import OrderedDict
>>> L = ['a','man', 'and', 'a', 'woman']
>>> list(OrderedDict.fromkeys(L))
['a', 'man', 'and', 'woman']

关于python - 在python中删除列表中的重复项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16100033/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com