This may not be possible, but if it is, it'd be convenient for some code I'm writing:
ListOne = ['jumps', 'over', 'the']
ListTwo = ['The', 'quick', 'brown', 'fox', ListOne, 'lazy', 'dog!']
If I do this, I'll end up with ListOne being a single item being a list inside of ListTwo.
But instead, I want to expand ListOne into ListTwo, but I don't want to have to do something like:
ListOne = ['jumps', 'over', 'the']
ListTwo = ['The', 'quick', 'brown', 'fox']
ListTwo.extend(ListOne)
ListTwo.extend(['lazy', 'dog!']
This will work but it's not as readable as the above code.
Is this possible?