假设我有两个列表如下: -
a = [9,11,12,13] b = [0,5]
现在,我想创建另一个列表,如果索引等于b的任何元素,那么我想在该特定索引处插入-1
所以在上述情况下,如果index = 0,5
新列表将包含[-1,9,11,12,13,-1]
如果上面给出了两个列表作为函数的输入,怎么做?
答案 0 :(得分:1)
如果我理解你的问题,我相信你正在寻找的东西。
a = [1, 2, 3, 4]
b = [0, 3]
def insert_at_indexes(li, indexes, value):
for ind in indexes:
li.insert(ind, value)
insert_at_indexes(a,b,-1)