Append integer to beginning of list in Python
How do I prepend an integer to the beginning of a list?
[1, 2, 3] ⟶ [42, 1, 2, 3]
← Назад к списку