Przenieś element na początek listy Python
#Use the insert method of a list.
l = list(...)
l.insert(index, item)
britishmailman
#Use the insert method of a list.
l = list(...)
l.insert(index, item)