In this video, we will learn about insert() method of list object, its syntax, and examples.
The syntax of insert() method is:
list.insert(i, x)
where i is position and x is item. Inserts method inserts the item at specified position in the list.
Consider a list of items. The index value of each item is shown below the item.
When we call insert() method on this list, with a position 2, and item x,
the insert method, inserts the item x at position or index 2 in the list. As a consequence, the items from the position 2 in the original list are shifted to right by one position in the resulting list.