gpt4 book ai didi

python - 在 Python 中按索引从列表中删除元素的简洁方法

转载 作者:太空狗 更新时间:2023-10-30 00:26:53 25 4
gpt4 key购买 nike

我有一个字符列表和索引列表

myList = ['a','b','c','d']
toRemove = [0,2]

我想在一次操作中得到这个

myList = ['b','d']

我可以做到这一点,但有没有办法更快地做到这一点?

toRemove.reverse()
for i in toRemove:
myList.pop(i)

最佳答案

简洁的回答

>>> myList = ['a','b','c','d']
>>> toRemove = [0,2]
>>>
>>> [v for i, v in enumerate(myList) if i not in toRemove]
['b', 'd']
>>>

关于python - 在 Python 中按索引从列表中删除元素的简洁方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10940534/

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