📜  如何将元素添加到列表 python 代码示例

📅  最后修改于: 2022-03-11 14:45:47.337000             🧑  作者: Mango

代码示例5
a=[1,2,3]
b=[2,3,4]
a.append(b)