Numpy bitwise_and contoh saat input adalah angka

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

import numpy as np
num1 = 5
num2 = 15

print ("Input number1 : ", num1)
print ("Input number2 : ", num2)
	
ans = np.bitwise_and(num1, num2)
print ("bitwise_and of 05 and 15 : ", ans)
Outrageous Ostrich