Matplotlib - Image Display
What is wrong with this code snippet?
import matplotlib.pyplot as plt import numpy as np img = np.array([[1, 2], [3, 4]]) plt.imshow(img, cmap='Blues') plt.show()
