Is anyone aware of a faster way to do this besides just splitting the list up and running in parallel?
I have 2 lists with T/F values. I am trying to calculate:
list3 = [False if l1[i] == False and l2[i] == False else True for i in range(len(l1))]
Thanks