Let's say I got a list below:
original = ['a', 'c', 'e']
I want to add another list, called add_item
, to the list original
:
add_item = ['b', 'd']
The result should be:
['a', 'b', 'c', 'e']
What is the syntactically cleanest way to accomplish this?
Thanks for any help!!