Python 串列(List) insert() 語法
Python 串列(List) insert() 語法可以讓我們在指定的位置插入元素,讓我們可以對串列進行更細緻的操作。
語法
list.insert(index, element)
參數
- index – 指定插入元素的位置,必須是整數。
- element – 要插入的元素。
範例
假設我們有一個串列:
list = ["apple", "banana", "cherry"]
要在串列的第二個位置插入一個元素 “orange”,可以使用 insert() 語法:
list.insert(1, "orange")
執行後,串列變成:
list = ["apple", "orange", "banana", "cherry"]
更多範例
要在串列的最後插入一個元素 “mango”,可以使用 insert() 語法:
list.insert(len(list), "mango")
執行後,串列變成:
list = ["apple", "orange", "banana", "cherry", "mango"]
總結
Python 串列(List) insert() 語法可以讓我們在指定的位置插入元素,讓我們可以對串列進行更細緻的操作。