i have two lists, both with 128 items:
a= [0, 1, 2, 3, ...] b= [6.4, 53.8, -5.2, 7.1, ...]
i have to run list b through two checks:
- is b[n]>50.0
- is b[n]<0
if check1 is true, than b[n]=b[n]-50, AND a[n]=a[n]+1 if check2 is true, than b[n]=b[n]+100, AND a[n]=a[n]-1
i can't figure out how to tie the two items in each list together so that a change in list b[n] triggers a change also in list a[n]
using this example, after running these lists through the 2 checks:
a= [0, 2, 1, 3, ...] b= [6.4, 3.8, 94.8, 7.1, ...]
i'm only weeks into programming with python and i have absolutely no previous experience with coding. i've been reading about iterators, maps, for loops, etc but i can't seem to get the language right for this sequence.
it seems easy but i'm stuck!
thanks,
joel.