如何通过使用python将现有值移动到下一个索引来在特定索引的现有列表中插入值

时间:2018-12-03 13:55:35

标签: python list indexing insert

我的清单如下。

test = ['firstvalue', 'thirdvalue']

我想在列表中插入一些值。 索引1的第二值和索引3的第四值

所以输出列表如下所示

test = ['firstvalue', 'secondvalue', 'thirdvalue', 'fourthvalue']

我尝试了以下方法,但对我而言不起作用

print test.insert(1, "secondvalue")

还有其他替代方法吗?

1 个答案:

答案 0 :(得分:0)

insert函数不返回值,而是修改在其上使用的数组。这是一个示例:

test = ['firstvalue', 'thirdvalue']
test.insert(1, "secondvalue")
print test