📜  在列表中添加元素的 python 代码 - Python 代码示例

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

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