Matplotlib - Image Display
What will be the visual result of this code snippet?
import matplotlib.pyplot as plt import numpy as np img = np.arange(9).reshape(3,3) plt.imshow(img, extent=[0, 6, 0, 3], aspect='auto') plt.show()
