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