I have a list of lists.
lst = [['cp1', 'cp2'], ['ac1', 'ac2'], ['12/12/2020', '12/12/2020']]
i want to convert this into dict or tuple and write to csv as per below format.
cp1;ac1;12/12/2020
cp2,ac2,12/12/2020
but the length of lst is not fixed it is dynamic (here it is 3 lists inside but can it can be N) . However lists in lst will have same number of element (in above example length is 2 ) .
Any pointer will be helpfull .