在Python中,append()方法用于在列表的末尾添加一個元素。使用方法如下:
my_list = [1, 2, 3] my_list.append(4) print(my_list) # Output: [1, 2, 3, 4]
在上面的示例中,我們創建了一個包含1、2、3三個元素的列表my_list。然后使用append()方法添加了一個新元素4。最后打印列表my_list,輸出結果為[1, 2, 3, 4]。
億速云公眾號
手機網站二維碼
Copyright ? Yisu Cloud Ltd. All Rights Reserved. 2018 版權所有
廣州億速云計算有限公司粵ICP備17096448號-1 粵公網安備 44010402001142號增值電信業務經營許可證編號:B1-20181529