美文网首页
python:list.insert()

python:list.insert()

作者: 愁容_骑士 | 来源:发表于2017-02-05 23:11 被阅读0次

Description
The method insert() inserts object obj into list at offset index.

Syntax
Following is the syntax for insert() method −

list.insert(index, obj)
Parameters
index -- This is the Index where the object obj need to be inserted.

obj -- This is the Object to be inserted into the given list.

Return Value
This method does not return any value but it inserts the given element at the given index.

Example
The following example shows the usage of insert() method.

#!/usr/bin/python

aList = [123, 'xyz', 'zara', 'abc']

aList.insert( 3, 2009)

print "Final List : ", aList

When we run above program, it produces following result −

Final List : [123, 'xyz', 'zara', 2009, 'abc']

相关文章

网友评论

      本文标题:python:list.insert()

      本文链接:https://www.haomeiwen.com/subject/sffyittx.html