Suppose i have 3 lists
[1,2,3]
['one','two','three']
['first','second','third']
I need to combine this into a single list like
[[1,'one','first'],[2,'two','second','third'],[3,'three','third']]
How do we do this?Using list comprehension?Is there any other best method?