vote up 0 vote down star
1

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.

flag
1  
On what basis should the merging take place? – Stephan202 Jul 17 at 12:05
2  
What are a, b, etc. (i.e. what data type)? As it stands, typing this into a Python interpreter gives an error because these are unbound names. – Martin v. Löwis Jul 17 at 12:06
Do you always want those items in the list concatenated, or do you want to be able to choose where and how many later? – tgray Jul 17 at 12:06
@Geo: wtf? are you an OP? – SilentGhost Jul 17 at 13:04

4 Answers

vote up 7 vote down

That example is pretty vague, but maybe something like this?

items = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h']
items[3:6] = [''.join(items[3:6])]

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 + operator on all items no matter what their type is):

items = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h']
items[3:6] = [reduce(lambda x, y: x + y, items[3:6])]

This makes use of the reduce function with a lambda function that basically adds the items together using the + operator.

link|flag
This works great for a list of strings. If the elements aren't strings, you'll need to use something other than ''.join() – tgray Jul 17 at 12:17
You're right, I added an example using reduce which works for any type of item that supports the + operator. I can't do more than that unless the OP expands on his question. – Blixt Jul 17 at 12:26
His question doesn't really make sense for anything else than strings. – Lennart Regebro Jul 17 at 14:01
vote up 7 vote down

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'.

>>> x = ['a', 'b', 'c', 'd', 'e', 'f', 'g']
>>> x[3:6] = [''.join(x[3:6])]
>>> x
['a', 'b', 'c', 'def', 'g']

Check out the documentation on sequence types, specifically on mutable sequence types. And perhaps also on string methods.

link|flag
vote up 0 vote down

my telepathic abilities are not particularly great, but here is what I think you want:

def merge(list_of_strings, indices):
    list_of_strings[indices[0]] = ''.join(list_of_strings[i] for i in indices)
    list_of_strings = [s for i, s in enumerate(list_of_strings) if i not in indices[1:]]
    return list_of_strings

I should note, since it might be not obvious, that it's not the same as what is proposed in other answers.

link|flag
vote up 1 vote down

just a variation

alist=["a", "b", "c", "d", "e", 0, "g"]
alist[3:6] = [''.join(map(str,alist[3:6]))]
print alist
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.