Change value of currently iterated element in list

Question:

problem:
when you use construction

for a in _list_:
    print a

it prints every item in array. But you can’t alter array. Is it possible to alter value of array (something like a=123, but that ain’t working)
I know it’s possible (for example in while loop), but I want to do it this way (more elegant)

In PHP it would be like

foreach ($array as &$value) {
    $value = 123;
}

(because of & sign, is passed as reference)

Asked By: kleofas

||

Answers:

for idx, a in enumerate(foo):
    foo[idx] = a + 42

Note though, that if you’re doing this, you probably should look into list comprehensions (or map), unless you really want to mutate in place (just don’t insert or remove items from iterated-on list).

The same loop written as a list comprehension looks like:

foo = [a + 42 for a in foo]
Answered By: Cat Plus Plus

Because python iterators are just a “label” to a object in memory, setting it will make it just point to something else.

If the iterator is a mutable object (list, set, dict etc) you can modify it and see the result in the same object.

>>> a = [[1,2,3], [4,5,6]]
>>> for i in a:
...    i.append(10)
>>> a
[[1, 2, 3, 10], [4, 5, 6, 10]]

If you want to set each value to, say, 123 you can either use the list index and access it or use a list comprehension:

>>> a = [1,2,3,4,5]
>>> a = [123 for i in a]
>>> a
[123, 123, 123, 123, 123]

But you’ll be creating another list and binding it to the same name.

Answered By: JBernardo
for a in _list_:
  _list_[_list_.index(a)]=123
Answered By: Ahmad Mohye
Categories: questions Tags:
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.