Matplotlib - Image Display
What will be the output when running this code?
import matplotlib.pyplot as plt import numpy as np img = np.zeros((3,3)) plt.imshow(img, cmap='gray') plt.colorbar() plt.show()
