Say I have a list like this:
[a, b, c, d, e, f, g]
How do modify that list so that it looks like this?
[a, b, c, def, g]
I would much prefer that it modified the existing list directly, not created a new list.
|
1
|
Say I have a list like this:
How do modify that list so that it looks like this?
I would much prefer that it modified the existing list directly, not created a new list. |
||||||||||||
|
|
|
That example is pretty vague, but maybe something like this?
It basically does a splice (or assignment to a slice) operation. It removes items 3 to 6 and inserts a new list in their place (in this case a list with one item, which is the concatenation of the three items that were removed.) For any type of list, you could do this (using the
This makes use of the |
||||||
|
|
|
On what basis should the merging take place? Your question is rather vague. Also, I assume a, b, ..., f are supposed to be strings, that is, 'a', 'b', ..., 'f'.
Check out the documentation on sequence types, specifically on mutable sequence types. And perhaps also on string methods. |
||
|
|
|
|
my telepathic abilities are not particularly great, but here is what I think you want:
I should note, since it might be not obvious, that it's not the same as what is proposed in other answers. |
|||
|
|
|
|
just a variation
|
||
|
|