📜  如何在python代码示例中附加列表

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

代码示例6
list_1 = ['w','h']
list_1.append('y')        # you need no veribal to store list_1.append('y')
print(list_1)             # ['w','h','y']

list_2 = ['a','r','e']
list_1.append(list_2)     # This also donot need a veribal to store it
print(list_1)             # ['w','h','y',['a','r','e']]

list_1.extend(list_2)
print(list_1)             # ['w','h','y',['a','r','e'],'a','r','e']