Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am wondering what is the most pythonic way to do the following and have it work:

strings = ['a','b']

for s in strings:  
    s = s+'c'

obviously this doesn't work in python but the result that I want to acheive is
strings = ['ac','bc']
Whats the most pythonic way to achieve this kind of result?

Thanks for the great answers!

share|improve this question

3 Answers

up vote 6 down vote accepted
strings = ['a', 'b']
strings = [s + 'c' for s in strings]
share|improve this answer
or strings[:] = .. to change the existing list – Jochen Ritzel Nov 20 '10 at 21:55

You can use list comprehension to create a list that has these values: [s + 'c' for s in strings]. You can modify the list in-place like this:

for i, s in enumerate(strings):
    strings[i] = s + 'c'

But I found that quite often, in-place modification is not needed. Look at your code to see if this applies.

share|improve this answer

You can use map function for that.

strings = ['a', 'b']
strings = map(lambda s: s + 'c', strings)
share|improve this answer
1  
Make sure you grab the return value of map. – robert Nov 20 '10 at 22:09
Yeah, that's right, I've modified the code. – Marek Sapota Nov 20 '10 at 22:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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