Matplotlib - Image Display
What will the following code display?
import matplotlib.pyplot as plt import numpy as np img = np.array([[0, 1], [1, 0]]) plt.imshow(img, cmap='gray') plt.show()
