list.insert(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']