Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

NumPy bitwise_and Example When inputs are Boolean

# welcome to softhunt.net
# Python program explaining
# bitwise_and() 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_and(bool1, bool2)
print ("Output array after bitwise_and: ", ans)
Source by softhunt.net #
 
PREVIOUS NEXT
Tagged: #NumPy #Example #When #inputs #Boolean
ADD COMMENT
Topic
Name
4+3 =