Matplotlib - Image Display
Identify the error in this code snippet:
import matplotlib.pyplot as plt img = [[1,2],[3,4]] plt.imshow(img) plt.scatter([0,1], [1,0], color='green') plt.show()
