gpt4 book ai didi

python - 切片时排除内部元素

转载 作者:行者123 更新时间:2023-11-30 23:05:07 25 4
gpt4 key购买 nike

所以我有一个列表...

a = [1,2,3,4,5]

我可以通过说以下内容来产生没有 5 的 b:

b = a[:-1]

如何生成没有 3 的 c?

c = a[:2:]?

最佳答案

您需要切片两次并连接列表,示例 -

c = a[:2] + a[3:]  #2 being the index of element `3` in the array.

演示 -

>>> a = [1,2,3,4,5]
>>> a[:2] + a[3:]
[1, 2, 4, 5]

关于python - 切片时排除内部元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33349366/

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