Code Numpy Bitwise_xor lorsque les entrées sont booléennes

# welcome to softhunt.net
# Python program explaining
# bitwise_xor() function

import numpy as np

bool1 = [True, False, False, True, False, True]
bool2 = [False, True, False, True, True, False]

print ("Input array1 : ", bool1)
print ("Input array2 : ", bool2)
	
ans = np.bitwise_xor(bool1, bool2)
print ("Output array after bitwise_xor: ", ans)
Outrageous Ostrich