Python insert()方法--list

描述

  • insert()方法:用於向列表中指定的索引位置以前插入新的對象,由於是在對應目標以前插入,故此方法沒法像append()方法同樣將對象添加到列表末尾。

語法

  • 語法格式:list.insert(index, object)

參數

  • index:要插入的列表對象的索引位置。
  • object:插入到列表的對象。

返回值

  • 無返回值

實例

實例以下:html

#!/usr/bin/python3

a = ['abc', '2019_11', 'pople']
others = {'name': 'jack'}

a.insert(-1, 'python')   # 在列表末尾以前插入字符串對象(沒法添加新的對象到列表末尾)
a.insert(1, others)     # 在索引值爲1的對象以前插入others	
print("New list: " + str(a))

輸出:python

New list: ['abc', {'name': 'jack'}, '2019_11', 'python', 'pople']
相關文章
相關標籤/搜索