```>>> tuple(f for x in [[1,2,3],[4,5,6],...
# development
w
Copy code
>>> tuple(f for x in [[1,2,3],[4,5,6],[7,8,9]] for f in x)
(1, 2, 3, 4, 5, 6, 7, 8, 9)
>>>