如何将列表元素插入列表?

时间:2016-03-15 12:15:51

标签: arrays list python-2.7 append

我有一个列表

let cell : CustomCell = CustomCell()

我想将列表b的成员插入到类似的

let cell = tableView.dequeueReusableCellWithIdentifier("customCell", forIndexPath: indexPath) as! CustomCell

有关如何执行此操作的任何建议吗?

1 个答案:

答案 0 :(得分:0)

如果您要在b的每个列表末尾的a中插入项目,enumerate()append()是您的选择。

for idx,item in enumerate(b):
    a[idx].append(item)

print a
>>> [['mf1234', 'james', '22', 'man'], ['mcs345', 'Anee', '22', 'women']]