📜  如何在python代码示例中将数字附加到列表中

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

代码示例3
l = [1, 2, 4, 5] 
new_item = 6
l.append(6)
print(l)