Python list-append()方法
阿新 • • 發佈:2019-03-27
show weight 格式 rgba dde tom head 對象 neu
描述
- append()方法向列表末尾添加新的對象(元素)。
語法
- 語法格式:
list.append(object)
參數
- object:添加到list末尾的對象。
返回值
- 無返回值(會修改原來的列表)
實例
實例如下:
1 #!/usr/bin/python3 2 3 a = [‘abc‘, ‘2019_11‘, ‘pople‘] 4 5 a.append(‘python‘) 6 print("New list: " + str(a))
上述實例輸出如下:
1 #!/usr/bin/python32 3 a = [‘abc‘, ‘2019_11‘, ‘pople‘] 4 5 a.append(‘python‘) 6 print("New list: " + str(a))
1 #!/usr/bin/python3 2 3 a = [‘abc‘, ‘2019_11‘, ‘pople‘] 4 5 a.append(‘python‘) 6 print("New list: " + str(a))
1 #!/usr/bin/python3 2 3 a = [‘abc‘, ‘2019_11‘, ‘pople‘] 4 5 a.append(‘python‘) 6 print("New l
Python list-append()方法