我有两个清单: [a, b, c] [d, e, f] 我想: [a, d, b, e, c, f]
[a, b, c] [d, e, f]
[a, d, b, e, c, f]
在Python中执行此操作的简单方法是什么?
python list
list ×1
python ×1