如何将一个列表插入另一个列表? [英] How do I insert a list into another list?

查看:88
本文介绍了如何将一个列表插入另一个列表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有两个列表:

A = [1,2,3]
B = [4,5,6]

是否存在将B插入A的任意位置的优雅方法?

Is there an elegant way to insert B into A at an arbitrary position?

假设输出:

[1,4,5,6,2,3]

很明显,我可以遍历B并一次插入一个,但是我发现有更好的方法.

Obviously I could iterate through B and insert them one at a time, but I figured there was a better way.

推荐答案

def insert(outer, inner, pos):
  outer[pos:pos] = inner

这篇关于如何将一个列表插入另一个列表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆