我的清单如下。
test = ['firstvalue', 'thirdvalue']
我想在列表中插入一些值。 索引1的第二值和索引3的第四值
所以输出列表如下所示
test = ['firstvalue', 'secondvalue', 'thirdvalue', 'fourthvalue']
我尝试了以下方法,但对我而言不起作用
print test.insert(1, "secondvalue")
还有其他替代方法吗?
答案 0 :(得分:0)
insert函数不返回值,而是修改在其上使用的数组。这是一个示例:
test = ['firstvalue', 'thirdvalue']
test.insert(1, "secondvalue")
print test