SyntaxFix
Write A Post
Hire A Developer
Questions
You can just compare the boolean array. For example
X = [True, False, True]
then
Y = X == False
would give you
Y = [False, True, False]