Python - Prepend item to list
Add item to front of a list. Either a new list is created or the current list is modified.
Add item to front of a list. Either a new list is created or the current list is modified.
[{{item}}] + {{list}}
last update:
Insert element at index 0 (start) of list.
{{list}}.insert(0, item)