how to insert an element in a end of list in pytho code example
Example: how to insert an element to the end of the list using insert in python
Syntax : list(index, item)
>>> numbers = [1, 2, 3]
>>> numbers
[1, 2, 3]
>>> numbers.insert(len(numbers), 4)
>>> numbers
[1, 2, 3, 4]
>>> numbers.insert(4, 5)
>>> numbers
[1, 2, 3, 4, 5]
>>> len(numbers)
5
>>> numbers[4]
5
>>> numbers[5]
Traceback (most recent call last):
File "<pyshell#8>", line 1, in <module>
numbers[5]
IndexError: list index out of range