1+1
2
import numpy as np
x = np.array([[1,2],[3,1]])
x.shape
(2, 2)
import matplotlib.pyplot as pp
pp.imshow(x)
<matplotlib.image.AxesImage at 0x7f1154b24860>