am trying to add a list of lists to a list
a = [['xx',''ee', 'yy'], [1,2,3]]
existing = [['zz', 'ss', 'ww'], [4,5,6]]
what is the best way add elements of a
into the existing
list
expected = [['zz', 'ss', 'ww'], [4,5,6], ['xx',''ee', 'yy'], [1,2,3]]