I have a list of lists
big_list = [['a1','b1','c1'], ['a2','b2','c3'], ['a3','b3','c3']]
how do I zip the lists within this list?
what I want to do is zip(list1,list2,list3)
, but do this dynamically
I believe it has to do smth with args
and kwargs
which I am not familiar with, any explanation is welcome
Thanks,