Numpy Unpackbits Code Unpacked Array di sepanjang Axis 0

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

# importing numpy
import numpy as np

# creating input array using
# array function
arr = np.array([[122, 15],[ 34, 12]], dtype = np.uint8)
print ("Input array : ", arr)

# unpacking elements of an array
# using unpackbits() function
ans = np.unpackbits(arr, axis=0)

print ("Output unpacked array : \n", ans)
Outrageous Ostrich