I have a list of lists
ls = [[1649534580000, 165.76, 165.86, 165.57, 165.57, 27.45, 10], [1649534640000, 165.6, 165.69, 165.42, 165.46, 44.1, 23]]
in each of the sub lists I would like to inset a name at the end e.g...
names = ['Dave', 'Bob']
ls = [[1649534580000, 165.76, 165.86, 165.57, 165.57, 27.45, 10, 'Dave'], [1649534640000, 165.6, 165.69, 165.42, 165.46, 44.1, 23, 'Bob']]
what's the most straight forward way to do that which can be scaled when the list of lists grows very large?