gpt4 book ai didi

python - 删除 python 中的数组值

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

我有一个简单的问题,如果我在 python 中有一个字符串数组:['a', 'b', 'c', 'd'] 有没有一种方法可以比较另一个字符串,如果它存在在数组中删除该值及其后的所有内容?我是 python 的新手,我不太熟悉语法但伪代码:

s = 'b'
array = ['a', 'b', 'c', 'd']

if b exists in array
remove b and elements after

所以新数组就是 ['a']。任何帮助将非常感激!

最佳答案

s = 'b'
array = ['a', 'b', 'c', 'd']

if s in array:
del array[array.index(s):]

关于python - 删除 python 中的数组值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18935656/

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