I have a bunch of lists I want to append to a single list that is sort of the "main" list in a program I'm trying to write. Is there a way to do this in one line of code rather than like 10? I'm a beginner so I have no idea...
For a better picture of my question, what if I had these lists:
x = [1, 2, 3]
y = [4, 5, 6]
z = [7, 8, 9]
And want to append y and z to x. Instead of doing:
x.append(y)
x.append(z)
Is there a way to do this in one line of code? I already tried:
x.append(y, z)
And it wont work.
equivalent to above answer, but sufficiently different to be worth a mention:
in the above expression, * is important for groking result as args to chain, this is same as prior chain(x,y,z). Also, note the result is hash-ordered.