Python Unzip List of Tuples

>>> [list(t) for t in zip(*l)]
[[1, 3, 8], [2, 4, 9]]
FishBrawler