[5.3. Tuples and Sequences](https://docs.python.org/3/tutorial/datastructures.html#tuples-and-sequences) should have the explanation of the indirect way of tuple comprehensions as shown below: Tuple comprehensions are not supported but if you really want them, do this with [tuple()](https://docs.python.org/3/library/functions.html#func-tuple) as shown below: ```python squares = tuple(x**2 for x in range(10)) ```