Matplotlib - Image Display
What will be the effect of this code snippet?
import matplotlib.pyplot as plt import numpy as np img = np.ones((10, 20)) plt.imshow(img, extent=[0, 5, 0, 10], aspect='auto') plt.show()
