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

I have a list :

s = ["sam1", "s'am2", "29"]

I want to replace ' from the whole list.
I need output as

s = ["sam1", "sam2", "30"]

currently I am iterating through the list.
Is there any better way to achieve it?

share|improve this question
1  
All answers for this question will ultimately be iterating over the list somehow unless! – dc5553 Apr 26 '12 at 6:40
1  
What's the problem with iterating over the list? – Burhan Khalid Apr 26 '12 at 6:55

3 Answers

up vote 7 down vote accepted

You could try this:

  s = [i.replace("'", "") for i in s]

but as pointed out this is still iterating through the list. I can't think of any solution that wouldn't include some sort of iteration (explicit or implicit) of the list at some point.

If you have a lot of data you want to do this to and are concerned about speed, you could evaluate the various approaches by timing them and pick the one that's the fastest, otherwise I would stick with the solution you consider most readable.

share|improve this answer
1  
This is iterating over the list..he is asking for something else in his question. – dc5553 Apr 26 '12 at 6:37
Levon yes ultimately that will be the case even at a very atomic level – dc5553 Apr 26 '12 at 6:49
@dc5553 I agree with both of your comments – Levon Apr 26 '12 at 6:53

You can also use map and lambda:

map(lambda a: a.replace("\'",""),s)

share|improve this answer

Sam,

This is the closest way I can think of to do it without iteration. Ultimately it is iterating in some fashion at a very atomic level.

s = ["sam1", "s'am2", "29"]
x = ','.join(s).replace("'","").split(",")
share|improve this answer
As is this question... – dc5553 Apr 26 '12 at 7:20
I 100% agree but crazy question gets crazy answer, feel free to post a solution that doesn't involve iteration.. – dc5553 Apr 26 '12 at 7:24
It could be adapted to use some other crazy seperator on the join, this is just an example of course – dc5553 Apr 26 '12 at 7:31

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.