I have 2 list of lists:
a = [['Apple'], ['Banana']]
b = [[1,2,3,4], [4,5,6]]
How can I concatenate as strings element wise and get a new list of lists as below:
new_list = [['Apple1', 'Apple2', 'Apple3', 'Apple4'], ['Banana4', 'Banana5', 'Banana6']]
Best Regards.