Good question - Considering that you are actually zipping more than two lists, you can make use of the following syntax:
[list(a) for a in zip([1,2,3], [4,5,6], [7,8,9])]
What this basically does is that this makes use of the comprehensions of the list and ends up converting each of the element present in the tuple into lists as per your requirement.
Hope this helps!