“Tuple comprehensions” and the star splat/unpack operator *
I just read the question Why is there no tuple comprehension in Python? In the comments of the accepted answer , it is stated that there are no true "tuple comprehensions". Instead, our current option is to use a generator expression and pass the resulting generator object to the tuple constructor: tuple(thing for thing in things) Alternatively, we can create a list using a list comprehension and then pass the list to the tuple constructor: tuple([thing for thing in things]) Lastly and to the contrary of the accepted answer, a more recent answer stated that tuple comprehensions are indeed a