Sorry to ask, probabily this is a simple question but I can't find a solution.
I have a list of lists, like this:
my_list = [['ba', 'da'], ['ra', 're'], ['ta', 'ma'], ]
the number of list is variable (3 in the example) but the lenght is the same for all of them (2 in the example).
I want:
new_list = ['barata', 'darema']
where
new_list[i] = my_list[0][i] + my_list[1][i] + my_list[2][i]