Question may be confusing, so here's an example:
I want to go from a tuple like (a, b, c) to a list of the form [a, 1, b, 1, c, 1]. What's the most Pythonic way to do this? I tried something like [*(x, 1) for x in list], before realizing that you can't unpack in list comprehension. What's the best way to do this? I already searched for a while and couldn't find anything helpful.