It's possible to use the following code to create a list: ```python [i+1 for i in(0,1,2)] [1, 2, 3] ``` Can a similar thing be done with tuples in Streamflow? ```python (i+1 for i in(0,1,2)), (<generator object <genexpr> at 0x03A53CF0>,) ``` Thanks Lockheed, Montana Mendy