Numpy bitwise_or code saat input array

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

import numpy as np

array1 = [3, 4, 54]
array2 = [23, 2, 3]

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