gpt4 book ai didi

python - 双端队列按索引删除项目

转载 作者:行者123 更新时间:2023-11-28 21:36:50 25 4
gpt4 key购买 nike

有什么办法可以按索引删除双端队列中的项目?

dq = deque(['a','b','c'])
dq.removeByIndex(1)
#output deque(['b', 'c'])
我只在文档中看到按值删除。另外,我知道我可以只将它弹出 i次,然后放回去,但它看起来并不漂亮。
deque

最佳答案

您可以尝试以下方法:

from collections import deque
deq = deque([1, 2, 3, 4])

del deq[1]
print(deq)

输出:
deque([1, 3, 4])

关于python - 双端队列按索引删除项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50519798/

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