Elemento en movimiento a la lista de inicio de Python

#Use the insert method of a list.

l = list(...)
l.insert(index, item)
britishmailman