Say you have a 2D numpy array of bools, array:
[[ True True True True True True]
[ True False False False False True]
[ True True True True True True]]
And you wish to represent them pictorially with ██ replacing the True values and whitespace for the False values:
██████████████
██ ██
██████████████
I've spent too much time with the chararray to no avail trying things like:
chars = np.chararrray(array.shape, unicode=True)
chars[array] = '██'