There are many ways to pretend to a short python list some of the important ways are as follows:-
The first method you can use s.insert(0, x) it is the most common whenever you see it, it may be time to consider using a collections.deque instead of a list.
Another way is the functional way, we do it as follows:-
new_list = [x] + your_list