Advertisements
Advertisements
Question
What the different ways to insert an element in a list. Explain with a suitable example.
Solution
append() function in Python is used to add more elements to a list. But, it includes elements at the end of a list. If you want to include an element at your desired position, you can use the insert () function is used to insert an element at any position of a list.
Syntax:
list.insert(position_index, element)
Example:
>>> MyList=[34,98,47, ‘Kannan’, ‘Gowrisankar’, ‘Lenin’, ‘Sreenivasan’ ]
>>> print(MyList)
[34, 98, 47, ‘Kannan’, ‘Gowrisankar’, ‘Lenin’, ‘Sreenivasan’]
>>> MyList.insert(3, ‘Ramakrishnan’)
>>> print(MyList)
[34, 98, 47, ‘Ramakrishnan’, ‘Kannan’, ‘Gowrisankar’, ‘Lenin’, ‘Sreenivasan’]
In the above example, the insert function inserts a new element ‘Ramakrishnan’ at the index value 3, i.e., at the 4th position. While inserting a new element in between the existing elements, at a particular location, the existing elements shift one position to the right.
APPEARS IN
RELATED QUESTIONS
Pick odd one in connection with collection data type?
Which of the following function is used to count the number of elements in a list?
If List = [10 ,20 ,30 ,40 ,50] then List[2] = 35 will result ______
If List = [17,23,41,10] then List.append(32) will result ______
Which of the following Python function can be used to add more than one element within an existing list?
How will you access the list elements in reverse order?
What will be the value of x in following python code?
List1 = [2,4,6[1,3,5]]
x = len(List1)
Explain the difference between del and clear( ) in the dictionary with an example.
What is the difference between List and Dictionary?
What is the purpose of range( )? Explain with an example.