Append integer to beginning of list in Python [duplicate]
>>> x = 42 >>> xs = [1, 2, 3] >>> xs.insert(0, x) >>> xs [42, 1, 2, 3] How it works: list.insert(index, value) Insert an item at a given position. The first argument is the index of the element before which to insert, so xs.insert(0, x) inserts at the front of the list, and … Read more