Hello,
I have two lists with true and false. Both have the same amount of value.
I’m trying to compare the booleans at the same index number and generate a new list with true and false value.
The conditions are:
if all true, true
if all false, false
either one of them is false, false.
eg.
List 1: [False, True, False]
List 2: [True, True, False]
Results: [False, True, False]
Thank you