รายการหลามแทรก ()วิธี การ
ตัวอย่าง
ใส่ค่า "สีส้ม" เป็นองค์ประกอบที่สองของfruit
รายการ:
fruits = ['apple', 'banana', 'cherry']
fruits.insert(1, "orange")
ความหมายและการใช้งาน
วิธี การinsert()
แทรกค่าที่ระบุในตำแหน่งที่ระบุ
ไวยากรณ์
list.insert(pos, elmnt)
ค่าพารามิเตอร์
Parameter | Description |
---|---|
pos | Required. A number specifying in which position to insert the value |
elmnt | Required. An element of any type (string, number, object etc.) |