I'm looking for a clean way to iterate over a list of tuples where each is a pair like so [(a, b), (c,d) ...]
. On top of that I would like to alter the tuples in the list.
Standard practice is to avoid changing a list while also iterating through it, so what should I do? Here's what I kind of want:
for i in range(len(tuple_list)):
a, b = tuple_list[i]
# update b's data
# update tuple_list[i] to be (a, newB)
Just replace the tuples in the list; you can alter a list while looping over it, as long as you avoid adding or removing elements:
for i, (a, b) in enumerate(tuple_list):
new_b = some_process(b)
tuple_list[i] = (a, new_b)
or, if you can summarize the changes to b
into a function as I did above, use a list comprehension:
tuple_list = [(a, some_process(b)) for (a, b) in tuple_list]
Why don't you go for a list comprehension instead of altering it?
new_list = [(a,new_b) for a,b in tuple_list]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With