l have a list as follow:
My_list=[[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [2, 5, 8, 11, 6, 4, 8, 1, 2, 7, 1]]
such that :
a=[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
and
b=[2, 5, 8, 11, 6, 4, 8, 1, 2, 7, 1]
Then l append them as follow
My_list.append(a)
My_list.append(b)
l would like to transform it to :
My_list=[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,2, 5, 8, 11, 6, 4, 8, 1, 2, 7, 1]
How can l remove a and b brackets ?