📜  python代码示例中两个列表的合并排序

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

代码示例2
a=[2,4,1,4]
b=[0,2,3,4]
a.extend(b)
a.sort()
print(a)