L = [[a1,a2,a3...100] , [b1,b2,b3...100]]
I want to append
[[c1,c1,c1..10, c2,c2,c2...10, ..., c10,c10,c10...10].
Is there a way where I can append it using a single line?
L.append([[c1]*10,[c2]*10]...)
The above line causes the appending as sublists. I don't want that.
Is there any way to create a custom list and append it on the fly
Thanks in advance!