Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have to search through a list and replace all occurrences of one element with another. I know I have to first find the index of all the elements, and then replace them, but my attempts in code are getting me nowhere. Any suggestions?

share|improve this question
2  
What's this for, by the way? – outis Apr 6 '10 at 1:40

closed as not a real question by Wooble, Spudley, von v., Anand, Sam I am Apr 30 at 14:45

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

4 Answers

up vote 15 down vote accepted
>>> a=[1,2,3,4,5,1,2,3,4,5,1]
>>> for n,i in enumerate(a):
...   if i==1:
...      a[n]=10
...
>>> a
[10, 2, 3, 4, 5, 10, 2, 3, 4, 5, 10]
share|improve this answer
6  
outis's answer below should be the accepted answer! – Emil Apr 18 '12 at 17:27

Try using a list comprehension and the ternary operator.

>>> a=[1,2,3,1,3,2,1,1]
>>> [4 if x==1 else x for x in a]
[4, 2, 3, 4, 3, 2, 4, 4]
share|improve this answer
2  
clean and Pythonic +1 – mushfiq Aug 21 '12 at 10:16

List comprehension works well--and looping through with enumerate can save you some memory (b/c the operation's essentially be doing in place).

There's also functional programming...see usage of map:

    >>> a = [1,2,3,2,3,4,3,5,6,6,5,4,5,4,3,4,3,2,1]
    >>> map(lambda x:x if x!= 4 else 'sss',a)
    [1, 2, 3, 2, 3, 'sss', 3, 5, 6, 6, 5, 'sss', 5, 'sss', 3, 'sss', 3, 2, 1]
share|improve this answer
2  
+1. It's too bad lambda and map are considered unpythonic. – outis Apr 7 '10 at 0:02
I'm not sure that lambda or map is inherently unpythonic, but I'd agree that a list comprehension is cleaner and more readable than using the two of them in conjunction. – damzam Apr 7 '10 at 2:14
I don't consider them unpythonic myself, but many do, including Guido van Rossum (artima.com/weblogs/viewpost.jsp?thread=98196). It's one of those sectarian things. – outis Apr 8 '10 at 1:29
>>> a=[1,2,3,4,5,1,2,3,4,5,1]
>>> item_to_replace = 1
>>> replacement_value = 6
>>> indices_to_replace = [i for i,x in enumerate(a) if x==item_to_replace]
>>> indices_to_replace
[0, 5, 10]
>>> for i in indices_to_replace:
...     a[i] = replacement_value
... 
>>> a
[6, 2, 3, 4, 5, 6, 2, 3, 4, 5, 6]
>>> 
share|improve this answer

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