i want to make a loop, that every time it runs, the corresponding item in a list is changed.
for example:
list=[10, 20, 30]
the first run will add 1 to 10
the second rung will subtract 5 from 20
the third run will add 2 to 30
and the loop starts over again.
how can i do this? thanks for answering!