I am trying to do a multiple totaling statements but it keeps saying index out of range. Here is the section of code:
for m in range(len(mo)):
for o in range(len(mag)):
if mag[o] == 0 and mo[m] ==1 :
countfujita[m] = countfujita[m] + 1
and I am trying to get the totals into list a list such as this: countfujita = [0,0,0,0,0,0]
I suspect this is because you are looping over
mag
for every item inmo
when this is not what you want. Let me know if the following fixes your issue:(this assumes that
len(mag) = len(mo)
)