リストにリストの要素を挿入する

スライスを使用します。

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

items[1:1] = ['a', 'b']
print(items) # [1, 'a', 'b', 2, 3, 4, 5]

関連項目