add data in list at first point python code example
Example 1: how to add an item to a list in python
myList = [1, 2, 3]
myList.append(4)
Example 2: python add to list with index
list.insert(index, element)
myList = [1, 2, 3]
myList.append(4)
list.insert(index, element)